-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
39 lines (39 loc) · 1.08 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
{
"name": "magetest/manager",
"description": "Magento fixture manager",
"keywords": ["fixture", "magento", "testing"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Contributors",
"homepage": "https://github.com/MageTest/Manager/contributors"
}
],
"require": {
"php": ">=5.3",
"symfony/yaml": "~2.0"
},
"require-dev": {
"behat/mink": "~1.5.0",
"behat/mink-goutte-driver": "~1.0.9",
"magetest/magento": "~1.8.1.0",
"phpspec/phpspec": "~2.0.1",
"phpunit/phpunit": "~4.0.20"
},
"autoload": {
"psr-0": {
"": [
"vendor/magetest/magento/src/app",
"vendor/magetest/magento/src/lib",
"vendor/magetest/magento/src/app/code/local",
"vendor/magetest/magento/src/app/code/community",
"vendor/magetest/magento/src/app/code/core"
],
"MageTest\\Manager": ["src", "tests"]
}
},
"config": {
"bin-dir": "bin"
}
}