-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
36 lines (36 loc) · 990 Bytes
/
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
{
"name": "trismegiste/mondrian",
"description": "Mondrian is a set of static analysis and refactoring tools for more abstraction",
"type": "CLI",
"keywords": ["refactoring", "abstract", "graph", "analysis", "static", "code", "metrics"],
"authors": [
{
"name": "Trismegiste"
}
],
"require": {
"php": ">=5.4",
"nikic/php-parser": "1.0.0beta2",
"symfony/console": "2.3.*",
"alom/graphviz": "0.9.*",
"symfony/finder": "2.3.*",
"symfony/yaml": "2.3.*",
"symfony/config": "2.3.*"
},
"autoload": {
"psr-4": {
"Trismegiste\\Mondrian\\": "src/"
}
},
"repositories": [{
"type": "vcs",
"url": "git://github.com/Trismegiste/graphviz.git"
}],
"license": "CC-BY-SA-3.0",
"extra": {
"plugins": [
"Trismegiste\\Mondrian\\Plugin\\About"
]
},
"minimum-stability": "stable"
}