-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.72 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.72 KB
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
{
"repositories": [
{
"type": "vcs",
"url": "git@github.com:MageTest/prophecy.git"
},
{
"type": "vcs",
"url": "git@github.com:MageTest/phpspec.git"
},
{
"type": "vcs",
"url": "git@github.com:MageHack/elasticmage.git"
},
{
"type": "vcs",
"url": "https://github.com/magento-hackathon/magento-composer-installer"
},
{
"type": "vcs",
"url": "git@github.com:svalaskevicius/BehatMage.git"
}
],
"require": {
"php": ">=5.3.0",
"magehack/elasticmage" : "dev-master"
},
"require-dev": {
"magetest/magento-phpspec-extension": "dev-develop",
"behat/behat":"*",
"behat/mink": "*",
"fabpot/goutte": "*@dev",
"behat/mink-extension": "*",
"behat/mink-goutte-driver": "*",
"behat/mink-selenium2-driver": "*",
"behat/mink-selenium-driver": "*",
"mockery/mockery": "dev-master@dev",
"magetest/magento-behat-extension": "dev-feature/refactor",
"sensiolabs/behat-page-object-extension": "*",
"bossa/phpspec2-expect": "dev-master"
},
"config": {
"bin-dir": "bin"
},
"minimum-stability": "dev",
"autoload": {
"psr-0": {
"MageTest\\PhpSpec\\MagentoExtension": "src",
"": [
"public/app/code/community",
"public/app/code/local",
"public/app/code/core",
"public/app",
"public/lib"
],
"Mage" : "public/app/code/core"
}
},
"extra":{
"magento-root-dir": "public/"
}
}