-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
41 lines (41 loc) · 1.17 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
{
"name": "symplify/php7_codesniffer",
"description": "PHP7_CodeSniffer detects and fixes violations against your coding standard.",
"keywords": ["phpcs", "standards", "php7", "code sniffer", "symplify"],
"license": "MIT",
"authors": [
{ "name": "Tomáš Votruba", "email": "tomas.vot@gmail.com" }
],
"require": {
"php": "^7.0",
"ext-tokenizer": "*",
"ext-simplexml": "*",
"squizlabs/php_codesniffer": "3.0.x-dev as 2.6",
"symfony/console": "3.2.x-dev as 3.1",
"symfony/event-dispatcher": "^3.0",
"symfony/finder": "^3.0",
"symfony/options-resolver": "^3.0",
"nette/bootstrap": "^2.4",
"nette/di": "^2.4",
"nette/robot-loader": "^2.4",
"nette/utils": "^2.4"
},
"require-dev": {
"phpunit/phpunit": "^5.4",
"tracy/tracy": "^2.4",
"slevomat/coding-standard": "^1.0"
},
"autoload": {
"psr-4": {
"Symplify\\PHP7_CodeSniffer\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Symplify\\PHP7_CodeSniffer\\Tests\\": "tests"
}
},
"bin": [
"bin/php7cs"
]
}