forked from MageTest/Manager
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
40 lines (40 loc) · 1.06 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
{
"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.4",
"symfony/yaml": "~2.6",
"fzaninotto/faker": "~1.4"
},
"require-dev": {
"behat/mink": "~1.6.0",
"behat/mink-goutte-driver": "~1.1",
"magento/core": "~1.9",
"phpspec/phpspec": "~2.1",
"phpunit/phpunit": "~4.5"
},
"autoload": {
"psr-0": {
"": [
"vendor/magento/core/app",
"vendor/magento/core/lib",
"vendor/magento/core/app/code/local",
"vendor/magento/core/app/code/community",
"vendor/magento/core/app/code/core"
],
"MageTest\\Manager": ["src", "tests"]
}
},
"config": {
"bin-dir": "bin"
}
}