-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.02 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
{
"name": "forrest79/phpcs-ignores",
"description": "PHPCS-Ignores provides functionality to use baseline or other ignoring for original PHPCS.",
"keywords": ["phpcs", "baseline", "ignore"],
"type": "phpstan-extension",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Jakub Trmota",
"email": "jakub@trmota.cz"
}
],
"require": {
"nette/neon": "^3.4",
"php": "^8.0",
"squizlabs/php_codesniffer": "^3.8"
},
"require-dev": {
"forrest79/phpcs": "^1.1",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-strict-rules": "^2.0"
},
"autoload": {
"psr-4": {
"Forrest79\\PhpCsIgnores\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Forrest79\\PhpCsIgnores\\Tests\\": "tests/"
}
},
"scripts": {
"phpcs": "vendor/bin/phpcs -s src tests/run-tests.php",
"phpstan": "vendor/bin/phpstan analyse src tests/run-tests.php",
"tests": "php tests/run-tests.php"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
}
}