forked from phpmetrics/PhpMetrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.16 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
{
"name": "halleck45/phpmetrics",
"replace": {
"halleck45/php-metrics": "*"
},
"description": "Static analyzis tool for PHP : Coupling, Cyclomatic complexity, Maintainability Index, Halstead's metrics... and more !",
"license": "MIT",
"keywords": [
"quality",
"analysis",
"testing",
"qa"
],
"authors": [
{
"name": "Jean-François Lépine",
"email": "[email protected]",
"homepage": "http://www.lepine.pro",
"role": "Copyright Holder"
}
],
"homepage": "http://www.phpmetrics.org",
"support": {
"issues": "https://github.com/Halleck45/PhpMetrics/issues"
},
"autoload": {
"psr-0": {
"Hal\\": "./src/"
},
"files": ["./compatibility.php"]
},
"require": {
"php": ">=5.4",
"twig/twig": "~1.15",
"symfony/console": "~2.5",
"hoa/ruler": "~1.0",
"symfony/config": "~2.4",
"symfony/yaml": "~2.4",
"ext-dom": "*"
},
"require-dev": {
"phpunit/phpunit": "~4.1"
},
"bin": [
"bin/phpmetrics"
]
}