forked from EdgedesignCZ/phpqa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.3 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.3 KB
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
{
"name": "edgedesign/phpqa",
"type": "library",
"description": "Analyze PHP code with one command.",
"keywords": ["QA", "code analysis", "static analysis"],
"license": "MIT",
"authors": [
{
"name": "Zdenek Drahos",
"email": "drahoszdenek@gmail.com"
}
],
"support": {
"issues": "https://github.com/EdgedesignCZ/phpqa/issues",
"source": "https://github.com/EdgedesignCZ/phpqa",
"docs": "https://edgedesigncz.github.io/phpqa/"
},
"bin": ["phpqa"],
"require": {
"codegyre/robo": "*",
"phpmd/phpmd" : "*",
"phploc/phploc": "*",
"symfony/dependency-injection": "~2.8",
"symfony/filesystem": "~2.8",
"symfony/process": "~2.8",
"pdepend/pdepend": "*",
"sebastian/phpcpd": "*",
"squizlabs/php_codesniffer": "*",
"phpmetrics/phpmetrics": "*"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"hamcrest/hamcrest-php": "*"
},
"autoload": {
"psr-4": {
"Edge\\QA\\": "src"
},
"files": ["src/report.php", "src/paths.php"]
},
"autoload-dev": {
"files": ["vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest.php"]
},
"config": {
"optimize-autoloader": true
}
}