forked from slevomat/coding-standard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.14 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": "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",
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"bin-dir": "bin",
"platform": {
"php": "7.4.0"
}
},
"require": {
"php": "^7.1 || ^8.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7",
"phpstan/phpdoc-parser": "^1.0.0",
"squizlabs/php_codesniffer": "^3.6.0"
},
"require-dev": {
"phing/phing": "2.17.0",
"php-parallel-lint/php-parallel-lint": "1.3.1",
"phpstan/phpstan": "0.12.99",
"phpstan/phpstan-deprecation-rules": "0.12.6",
"phpstan/phpstan-phpunit": "0.12.22",
"phpstan/phpstan-strict-rules": "0.12.11",
"phpunit/phpunit": "7.5.20|8.5.5|9.5.10"
},
"autoload": {
"psr-4": {
"SlevomatCodingStandard\\": "SlevomatCodingStandard"
}
},
"autoload-dev": {
"psr-4": {
"SlevomatCodingStandard\\PHPStan\\": "build/PHPStan",
"SlevomatCodingStandard\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "7.x-dev"
}
}
}