-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
94 lines (94 loc) · 3.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name" : "phpcsstandards/phpcsdevtools",
"description" : "Tools for PHP_CodeSniffer sniff developers.",
"type" : "phpcodesniffer-standard",
"keywords" : [ "phpcs", "devtools", "debug", "dev", "static analysis", "php_codesniffer", "phpcodesniffer-standard" ],
"homepage": "https://phpcsstandards.github.io/PHPCSDevTools/",
"license" : "LGPL-3.0-or-later",
"authors" : [
{
"name" : "Juliette Reinders Folmer",
"role" : "lead",
"homepage" : "https://github.com/jrfnl"
},
{
"name" : "Contributors",
"homepage" : "https://github.com/PHPCSStandards/PHPCSDevTools/graphs/contributors"
}
],
"support" : {
"issues" : "https://github.com/PHPCSStandards/PHPCSDevTools/issues",
"source" : "https://github.com/PHPCSStandards/PHPCSDevTools",
"security": "https://github.com/PHPCSStandards/PHPCSDevTools/security/policy"
},
"require" : {
"php" : ">=5.4",
"squizlabs/php_codesniffer" : "^3.1.0",
"dealerdirect/phpcodesniffer-composer-installer" : "^0.4.1 || ^0.5 || ^0.6.2 || ^0.7 || ^1.0"
},
"require-dev" : {
"roave/security-advisories" : "dev-master",
"phpunit/phpunit" : "^4.8.36 || ^5.7.21 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.5.32 || ^11.3.3",
"php-parallel-lint/php-parallel-lint": "^1.4.0",
"php-parallel-lint/php-console-highlighter": "^1.0.0",
"phpcsstandards/phpcsdevcs": "^1.1.6",
"phpcsstandards/phpcsutils" : "^1.0",
"yoast/phpunit-polyfills": "^1.1 || ^2.0 || ^3.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"lock": false
},
"autoload" : {
"psr-4": {
"PHPCSDevTools\\Scripts\\": "Scripts/"
}
},
"autoload-dev" : {
"psr-4": {
"PHPCSDevTools\\Tests\\": "Tests/"
}
},
"bin": [
"bin/phpcs-check-feature-completeness"
],
"minimum-stability": "dev",
"prefer-stable": true,
"scripts" : {
"lint": [
"@php ./vendor/php-parallel-lint/php-parallel-lint/parallel-lint . -e php --show-deprecated --exclude vendor --exclude .git"
],
"lintlt72": [
"@php ./vendor/php-parallel-lint/php-parallel-lint/parallel-lint . -e php --show-deprecated --exclude vendor --exclude .git --exclude .github/build"
],
"checkcs": [
"@php ./vendor/squizlabs/php_codesniffer/bin/phpcs"
],
"fixcs": [
"@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf"
],
"test": [
"@php ./vendor/phpunit/phpunit/phpunit"
],
"test-sniff": [
"@php ./vendor/phpunit/phpunit/phpunit --testsuite DebugSniff"
],
"test-tools": [
"@php ./vendor/phpunit/phpunit/phpunit --testsuite DevTools"
],
"test-lte9": [
"@php ./vendor/phpunit/phpunit/phpunit -c phpunitlte9.xml.dist"
],
"test-sniff-lte9": [
"@php ./vendor/phpunit/phpunit/phpunit -c phpunitlte9.xml.dist --testsuite DebugSniff"
],
"test-tools-lte9": [
"@php ./vendor/phpunit/phpunit/phpunit -c phpunitlte9.xml.dist --testsuite DevTools"
],
"check-complete": [
"@php ./bin/phpcs-check-feature-completeness ./PHPCSDebug"
]
}
}