-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
45 lines (45 loc) · 1.47 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
{
"name": "there4/fogbugz-api",
"description": "API interface for FogBugz",
"keywords": ["fogbugz"],
"homepage": "https://github.com/there4/fogbugz-php-api",
"type": "library",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Craig Davis",
"email": "craig@there4development.com"
}
],
"support": {
"issues": "https://github.com/there4/fogbugz-php-api/issues"
},
"autoload": {
"psr-0": {
"There4": "src/"
}
},
"require": {
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"jakub-onderka/php-parallel-lint": "^0.9.2",
"jakub-onderka/php-console-highlighter": "^0.3.2",
"squizlabs/php_codesniffer": "^3.1",
"phpstan/phpstan": "^0.9.1"
},
"scripts": {
"coverage": [
"vendor/bin/phpunit --coverage-html build/coverage",
"php -S localhost:8080 -t build/coverage"
],
"lint": "vendor/bin/parallel-lint --exclude app --exclude vendor .",
"sniff": "vendor/bin/phpcs --standard=PSR2 -n --extensions=php src test",
"sniff-strict": "vendor/bin/phpcs --standard=PSR2 --extensions=php src test",
"format": "vendor/bin/phpcbf --standard=PSR2 --extensions=php src test",
"analyse": "vendor/bin/phpstan analyse -l 4 src test",
"analyse-strict": "vendor/bin/phpstan analyse -l 7 src test",
"test": "vendor/bin/phpunit"
}
}