-
-
Notifications
You must be signed in to change notification settings - Fork 195
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (45 loc) · 1.21 KB
/
composer.json
File metadata and controls
46 lines (45 loc) · 1.21 KB
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": "slevomat/coding-standard",
"description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.",
"license": "MIT",
"type": "phpcodesniffer-standard",
"keywords": [ "phpcs", "dev" ],
"prefer-stable": true,
"config": {
"bin-dir": "bin",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": "^7.4 || ^8.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7 || ^1.2.0",
"phpstan/phpdoc-parser": "^2.3.2",
"squizlabs/php_codesniffer": "^4.0.1"
},
"require-dev": {
"phing/phing": "3.0.1|3.1.2",
"php-parallel-lint/php-parallel-lint": "1.4.0",
"phpstan/phpstan": "2.1.42",
"phpstan/phpstan-deprecation-rules": "2.0.4",
"phpstan/phpstan-phpunit": "2.0.16",
"phpstan/phpstan-strict-rules": "2.0.10",
"phpunit/phpunit": "9.6.34|10.5.63|11.4.4|11.5.50|12.5.14"
},
"autoload": {
"psr-4": {
"SlevomatCodingStandard\\": "SlevomatCodingStandard/"
}
},
"autoload-dev": {
"psr-4": {
"SlevomatCodingStandard\\PHPStan\\": "build/PHPStan/",
"SlevomatCodingStandard\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "8.x-dev"
}
}
}