-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
47 lines (47 loc) · 1.25 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
{
"name": "youthweb/php-youthweb-api",
"type": "library",
"description": "Youthweb API client",
"homepage": "https://github.com/youthweb/php-youthweb-api",
"keywords": ["youthweb", "api"],
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Artur Weigandt",
"email": "[email protected]",
"homepage": "https://wlabs.de"
}
],
"require": {
"php": "^8.0",
"art4/json-api-client": "^1.0",
"guzzlehttp/guzzle": "^7.2",
"psr/cache": "^2.0 || ^3.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"youthweb/oauth2-youthweb": "^1.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.14",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"Youthweb\\Api\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Youthweb\\Api\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"cs": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"phpstan": "vendor/bin/phpstan --configuration=\".phpstan.neon\" analyze",
"test": "vendor/bin/phpunit"
}
}