-
Notifications
You must be signed in to change notification settings - Fork 45
/
composer.json
64 lines (64 loc) · 1.59 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
62
63
64
{
"name": "mamuz/php-dependency-analysis",
"type": "project",
"description": "Static code analysis to find violations in a dependency graph",
"homepage": "https://github.com/mamuz/PhpDependencyAnalysis",
"license": "MIT",
"keywords": [
"phpda",
"dependency",
"analysis",
"graph",
"architecture"
],
"authors": [
{
"name": "Marco Muths",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/mamuz/PhpDependencyAnalysis/issues",
"source": "https://github.com/mamuz/PhpDependencyAnalysis"
},
"config": {
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.3",
"ext-json": "*",
"psr/log": "~1.0",
"nikic/php-parser": "~4.0",
"clue/graph": "~0.8",
"graphp/algorithms": "~0.8.1",
"graphp/graphviz": "~0.2.0",
"phpdocumentor/reflection-docblock": "~4.0",
"doctrine/collections": "~1.0",
"symfony/yaml": "~4.2",
"symfony/console": "~4.2",
"symfony/finder": "~4.2"
},
"require-dev": {
"ext-simplexml": "*",
"mockery/mockery": "~1.2",
"codeception/codeception": "^2.5"
},
"autoload": {
"psr-4": {
"PhpDA\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpDATest\\": "tests/unit/"
}
},
"bin": [
"bin/phpda"
],
"scripts": {
"test": "./vendor/bin/codecept run"
}
}