-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
39 lines (39 loc) · 962 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "alexkart/curl-builder",
"description": "PSR-7 compatible curl builder.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Alexander Kartavenko",
"email": "askemailbox@gmail.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.3",
"psr/http-message": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"nyholm/psr7": "^1.3",
"phan/phan": "^5.4",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"Alexkart\\CurlBuilder\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Alexkart\\CurlBuilder\\Tests\\": "tests"
}
},
"scripts": {
"phan": "phan --progress-bar -o analysis.txt",
"phpstan": "vendor/bin/phpstan analyse -l 8 src tests",
"test": "vendor/bin/phpunit"
}
}