-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcomposer.json
35 lines (35 loc) · 948 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
{
"name": "magento-ecg/magniffer",
"description": "An extendable, XPath driven, static code analysis tool for Magento, built on the top of PHP-Parser library.",
"homepage": "/~https://github.com/magento-ecg/magniffer",
"license": "MIT",
"authors": [
{
"name": "Magento Expert Consulting Group",
"homepage": "http://magento.com/consulting",
"role": "Maintainer"
}
],
"support": {
"issues": "/~https://github.com/magento-ecg/magniffer/issues"
},
"require": {
"php": ">=5.4",
"nikic/php-parser": "1.0.*@dev",
"symfony/console": "2.7.*@dev",
"symfony/finder": "2.6.*@dev",
"symfony/yaml": "2.7.*@dev"
},
"autoload": {
"classmap": [
"src/"
],
"psr-0": {
"Ecg\\Magniffer": ""
}
},
"target-dir": "Ecg/Magniffer",
"bin": [
"bin/mgf"
]
}