-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
48 lines (48 loc) · 1.07 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
{
"name": "consistence/coding-standard",
"description": "Consistence - Coding Standard - PHP Code Sniffer rules",
"keywords": ["coding standard", "cs", "coding", "standard", "ruleset", "phpcs", "PHPCodeSniffer", "CodeSniffer", "sniffer"],
"license": "MIT",
"authors": [
{
"name": "Vašek Purchart",
"email": "[email protected]",
"homepage": "http://vasekpurchart.cz"
}
],
"require": {
"php": "^7.2",
"ext-tokenizer": "*",
"squizlabs/php_codesniffer": "~3.5.5",
"slevomat/coding-standard": "^6.0"
},
"require-dev": {
"phing/phing": "2.17.2",
"maglnet/composer-require-checker": "2.0",
"php-parallel-lint/php-console-highlighter": "1.0",
"php-parallel-lint/php-parallel-lint": "1.3.2",
"phpunit/phpunit": "8.5.25"
},
"autoload": {
"psr-4": {
"Consistence\\": [ "Consistence" ]
},
"classmap": [
"Consistence"
]
},
"autoload-dev": {
"psr-4": {
"Consistence\\": [ "tests" ]
},
"classmap": [
"tests"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
},
"bin-dir": "bin"
}
}