-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 866 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 866 Bytes
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
{
"name": "alanwillms/php-hound",
"description": "Runs a set of quality assurance tools for PHP.",
"keywords": ["quality", "qa", "phpcs", "phpmd", "phpcpd"],
"authors": [
{
"name": "Alan Michel Willms Quinot",
"email": "dyulax@gmail.com"
}
],
"require": {
"squizlabs/php_codesniffer": "2.*",
"sebastian/phpcpd": "2.*",
"phpmd/phpmd": "2.2.*",
"league/climate": "3.1.*",
"sabre/xml": "^1.1",
"league/csv": "^7.1",
"league/plates": "^3.1",
"sebastian/diff": "~1.3",
"sebastian/git": "~2.0"
},
"require-dev": {
"phpunit/phpunit": "4.7.*",
"codeclimate/php-test-reporter": "dev-master"
},
"autoload": {
"psr-4": {
"phphound\\": "src"
}
},
"bin": ["bin/php-hound"]
}