forked from PHPCompatibility/PHPCompatibility
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
29 lines (29 loc) · 811 Bytes
/
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
{
"name" : "wimg/php-compatibility",
"description" : "This is a set of sniffs for PHP_CodeSniffer that checks for PHP version compatibility.",
"require" : {
"php" : ">=5.1.2",
"ext-tokenizer" : "*",
"squizlabs/php_codesniffer" : ">=1.5.1,<2.4"
},
"require-dev" : {
"satooshi/php-coveralls" : "dev-master"
},
"license" : "LGPL",
"keywords" : [ "compatibility", "phpcs", "standards" ],
"autoload" : {
"psr-4" : {
"PHPCompatibility\\" : ""
}
},
"type" : "phpcodesniffer-standard",
"support" : {
"issues" : "https://github.com/wimg/PHPCompatibility/issues",
"source" : "https://github.com/wimg/PHPCompatibility"
},
"authors" : [ {
"name" : "Wim Godden",
"role" : "lead"
} ],
"homepage" : "http://techblog.wimgodden.be/tag/codesniffer/"
}