-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
37 lines (37 loc) · 1 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
{
"name" : "magium/magento",
"type": "library",
"description": "Magento-based functionality for the Magium test library",
"keywords": ["magento", "selenium", "webdriver", "testing"],
"homepage": "http://www.magiumlib.com/",
"license": "ASL-2.0",
"authors": [
{
"name": "Kevin Schroeder",
"email": "kschroeder@mirageworks.com",
"homepage": "http://magiumlib.com/",
"role": "Developer"
}
],
"require" : {
"magium/magium": "~1.1",
"zendframework/zend-uri": "^2.5"
},
"repositories" : [ {
"type" : "composer",
"url" : "https://packagist.org/"
} ],
"autoload" : {
"psr-4" : {
"Magium\\" : "lib/",
"Tests\\Magium\\Magento\\" : "tests/Magento",
"Tests\\Magium\\Magento18\\" : "tests/Magento18",
"Tests\\Magium\\MagentoEE112\\" : "tests/MagentoEE112",
"Tests\\Magium\\MagentoEE113\\" : "tests/MagentoEE113",
"Tests\\Magium\\MagentoEE114\\" : "tests/MagentoEE114"
},
"files": [
"register.php"
]
}
}