forked from punkstar/mageconfigsync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (31 loc) · 830 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
37
{
"name": "punkstar/mageconfigsync",
"description": "A utility to aid the storing of Magento configuration in version control.",
"license": "MIT",
"keywords": ["magento"],
"authors": [{
"name": "Nick Jones",
"email": "[email protected]",
"homepage": "http://www.nicksays.co.uk",
"role": "Developer"
}],
"require": {
"php": ">=5.3.0",
"symfony/console": "v2.3.4",
"symfony/yaml": "v2.3.4"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"ecomdev/mage-ci": "master@dev"
},
"autoload": {
"psr-0": {
"MageConfigSync\\": "src/"
}
},
"bin": ["bin/mageconfigsync"],
"repositories": [{
"type": "vcs",
"url": "https://github.com/punkstar/MageCI.git"
}]
}