-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 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
49
50
{
"name": "phpmetrics/phpmetrics",
"replace": {
"halleck45/phpmetrics": "*",
"halleck45/php-metrics": "*"
},
"description": "Static analyzer 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": "lepinejeanfrancois@yahoo.fr",
"homepage": "http://www.lepine.pro",
"role": "Copyright Holder"
}
],
"homepage": "http://www.phpmetrics.org",
"support": {
"issues": "https://github.com/PhpMetrics/PhpMetrics/issues"
},
"autoload": {
"psr-0": {
"Hal\\": "./src/"
},
"files": ["./src/functions.php"]
},
"require": {
"php": ">=5.5",
"ext-dom": "*",
"ext-tokenizer": "*",
"nikic/php-parser": "^3|^4"
},
"require-dev": {
"phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14",
"sebastian/comparator": ">=1.2.3",
"squizlabs/php_codesniffer": "^3.5"
},
"bin": [
"bin/phpmetrics"
],
"config": {
"sort-packages": true
}
}