forked from phpmetrics/PhpMetrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 1.84 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
51
52
53
54
55
56
57
58
59
60
61
{
"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": "[email protected]",
"homepage": "http://www.lepine.pro",
"role": "Copyright Holder"
}
],
"homepage": "http://www.phpmetrics.org",
"support": {
"issues": "https://github.com/PhpMetrics/PhpMetrics/issues"
},
"autoload": {"psr-4": {"Hal\\": "src/Hal"}},
"autoload-dev": {"psr-4": {"Tests\\Hal\\": "tests"}},
"require": {
"php": ">=8.1",
"ext-tokenizer": "*",
"nikic/php-parser": "^5.0"
},
"require-dev": {
"phake/phake": "^4.4.0",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "^10.5",
"sebastian/comparator": ">=5.0.0",
"squizlabs/php_codesniffer": "^3.8",
"symfony/dom-crawler": "^6.4",
"roave/security-advisories": "dev-latest"
},
"bin": [
"bin/phpmetrics"
],
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"suggest": {
"ext-dom": "To allow XML parsing and report results.",
"ext-yaml": "To allow yaml parsing of configuration files."
}
}