forked from netz98/n98-magerun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 1.63 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
{
"name": "n98/magerun",
"description": "Tools for managing Magento projects and installations",
"license": "MIT",
"support": {
"issues": "https://github.com/netz98/n98-magerun/issues"
},
"homepage": "http://netz98.github.com/n98-magerun/",
"keywords": [
"magento",
"installer",
"cli",
"magerun"
],
"require": {
"composer/composer": "^1.3.0",
"fzaninotto/faker": "~1.4",
"n98/junit-xml": "~1.0",
"php": ">=5.4.0",
"psy/psysh": "~0.4",
"symfony/console": "~2.3",
"symfony/event-dispatcher": "~2.3",
"symfony/finder": "~2.3",
"symfony/process": "~2.3",
"symfony/validator": "~2.3",
"symfony/yaml": "~2.3",
"twig/twig": "~1.42"
},
"require-dev": {
"bamarni/symfony-console-autocomplete": "^1.2.0",
"friendsofphp/php-cs-fixer": "~1.12.0",
"phing/phing": "~2.10.0",
"phpunit/phpunit": "~4.1",
"seld/phar-utils": "1.0.1",
"mikey179/vfsstream": "^1.6"
},
"autoload": {
"psr-0": {
"N98": "src"
},
"psr-4": {
"N98\\": "shared/src/N98"
}
},
"autoload-dev": {
"psr-0": {
"N98": "tests"
}
},
"authors": [
{
"name": "Christian Münch",
"email": "[email protected]"
},
{
"name": "Alexander Menk",
"email": "[email protected]"
}
],
"bin": [
"bin/n98-magerun"
],
"config": {
"platform": {
"php": "5.4.0"
}
}
}