-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
40 lines (40 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
40
{
"name" : "magium/magium",
"type": "library",
"description": "A browser/functional testing suite using Web Driver. Contains low-ish level functionality to quickly build browser/functional tests.",
"keywords": ["selenium", "webdriver", "testing"],
"homepage": "https://github.com/magium/Magium",
"license": "Apache-2.0",
"bin": [
"bin/magium"
],
"authors": [
{
"name": "Kevin Schroeder",
"email": "[email protected]",
"homepage": "http://eschrade.com/",
"role": "Developer"
}
],
"require": {
"zendframework/zend-di" : "^2.5.1",
"facebook/webdriver" : "^1.1.1",
"zendframework/zend-log": "^2.6.0",
"zendframework/zend-i18n": "^2.5.1",
"zendframework/zend-cache": "^2.5.3",
"symfony/console": "^2|^3",
"zendframework/zend-config": "2.6.0",
"zendframework/zend-json": "^2.6.1",
"phpunit/phpunit": "^5|^6"
},
"repositories" : [ {
"type" : "composer",
"url" : "https://packagist.org/"
} ],
"autoload" : {
"psr-4" : {
"Magium\\" : "lib/",
"Tests\\Magium\\" : "tests/"
}
}
}