forked from squizlabs/PHP_CodeSniffer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.27 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": "hostnet/phpcs-tool",
"description": "PHP_CodeSniffer tokenises PHP, JavaScript and CSS files and detects violations of a defined set of coding standards. Hostnet version",
"type": "library",
"keywords": [
"phpcs",
"standards",
"hostnet"
],
"homepage": "http://www.squizlabs.com/php-codesniffer",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Greg Sherwood",
"role": "originial author"
},
{
"name": "Nico Schoenmaker", "email" : "[email protected]", "role" : "developer"
},
{
"name": "Hidde Boomsma", "email" : "[email protected]", "role" : "developer"
}
],
"support": {
"issues": "https://github.com/hostnet/PHP_CodeSniffer/issues",
"source": "https://github.com/hostnet/PHP_CodeSniffer"
},
"autoload": {
"classmap": [ "src"],
"files" : ["src/Tokens.php" ]
},
"suggest": {
"phpunit/php-timer": "dev-master"
},
"require": {
"php": ">=5.3",
"ext-tokenizer": "*"
},
"bin": [
"bin/phpcs"
],
"replace": {
"squizlabs/php_codesniffer" : "*"
},
"require-dev": {
"phpunit/phpunit": "3.*"
}
}