-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
48 lines (48 loc) · 1.23 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
{
"name": "mothership/mothership_magerun",
"license": "GPL-3.0",
"type": "magento-module",
"description": "Mothership Magerun Extensions for Magento",
"homepage": "https://www.mothership.de",
"require": {
"php": ">=5.4",
"magento-hackathon/magento-composer-installer": "*",
"symfony/console": "~2.7",
"symfony/yaml": "~2.7",
"mothership/state_machine": "v1.4.5",
"firegento/psr0autoloader": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"escapestudios/symfony2-coding-standard": "~2.0",
"n98/magerun": "dev-master",
"composer/composer": "1.0.*@dev",
"aoepeople/composer-installers": "*"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.firegento.com/"
}
],
"authors": [
{
"name": "Don Bosco van Hoi",
"email": "[email protected]",
"role": "Contributor/Maintainer"
}
],
"autoload": {
"psr-4": {
"Mothership\\Magerun\\": "htdocs/lib/Mothership/Magerun"
}
},
"autoload-dev": {
"psr-4": {
"Mothership\\Magerun\\Base\\": ["htdocs/lib/n98-magerun/modules/mothership_addons/src", "htdocs/tests/Mothership/Magerun/Base"]
}
},
"extra": {
"magento-root-dir": "htdocs"
}
}