-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.4 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "radiergummi/wander",
"description": "A PHP client for the modern world",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Moritz Friedrich",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Radiergummi\\Wander\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Radiergummi\\Wander\\Tests\\Unit\\": "tests/unit",
"Radiergummi\\Wander\\Tests\\Integration\\": "tests/integration"
}
},
"require": {
"php": ">=7.4",
"nyholm/psr7": "^1.3",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0"
},
"config": {
"sort-packages": true
},
"require-dev": {
"nyholm/psr7-server": "^1.0",
"phpunit/phpunit": "^9.3",
"symfony/process": "^5.1",
"vimeo/psalm": "^3.14",
"laminas/laminas-httphandlerrunner": "^1.1"
},
"suggest": {
"ext-curl": "To use the curl driver"
},
"scripts": {
"post-install-cmd": [
"./scripts/fetch_phpdoc.sh"
],
"test": "./vendor/bin/phpunit -c phpunit.xml",
"static-analysis-ci": "./vendor/bin/psalm --output-format=compact --no-progress --threads=$(nproc)",
"static-analysis": "./vendor/bin/psalm --no-progress --threads=$(nproc)"
}
}