-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
36 lines (36 loc) · 1.12 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
{
"name": "ampache/ampacheapi-php",
"type": "library",
"description": "Ampache API PHP Library.",
"keywords": ["ampache", "api", "library"],
"homepage": "https://github.com/ampache/ampacheapi-php",
"license": "AGPL-3.0-only",
"minimum-stability": "dev",
"require": {
"php": ">=7.4.0",
"ext-xml": "*",
"ext-json": "*",
"ext-simplexml": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.49",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"AmpacheApi\\": "src/"
}
},
"scripts": {
"stan": "vendor/bin/phpstan analyse",
"stan-baseline": "vendor/bin/phpstan --generate-baseline",
"cs:fix": "vendor/bin/php-cs-fixer fix",
"cs:check": "vendor/bin/php-cs-fixer fix --dry-run -vv"
},
"scripts-descriptions": {
"stan": "Performs static analysis",
"stan-baseline": "Regenerate phpstan baseline",
"cs:fix": "Performs code-style corrections on the whole codebase",
"cs:check": "Performs a code-style dry-run on the whole codebase"
}
}