forked from mamuz/PhpDependencyAnalysis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
69 lines (69 loc) · 1.75 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
65
66
67
68
69
{
"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": "^5.6 || ^7.0",
"psr/log": "~1.0",
"nikic/php-parser": "~2.0|~3.0",
"clue/graph": "~0.8",
"graphp/algorithms": "~0.8.1",
"graphp/graphviz": "~0.2.0",
"phpdocumentor/reflection-docblock": "~3.1",
"doctrine/collections": "~1.0",
"symfony/yaml": "~2.5|~3.0",
"symfony/console": "~2.8|~3.0",
"symfony/finder": "~2.8|~3.0",
"padraic/phar-updater": "~1.0"
},
"require-dev": {
"mockery/mockery": "~0.9.2",
"codeception/codeception": "^2.2"
},
"autoload": {
"psr-4": {
"PhpDA\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpDATest\\": "tests/unit/"
}
},
"bin": [
"bin/phpda"
],
"extra": {
"branch-alias": {
"dev-master": "1.4-dev"
}
},
"scripts": {
"test": "./vendor/bin/codecept run --env bin --env phar",
"phar": "./build/phar.sh"
}
}