forked from zend-patterns/ZendServerSDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 813 Bytes
/
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
41
42
43
{
"name" : "zenddevops/client",
"description" : "ZF2 CLI tool to access Zend Server Web API",
"type" : "project",
"authors" : [{
"name" : "Slavey Karadzhov",
"email" : "[email protected]",
"homepage" : "http://zend.com",
"role" : "Author"
}
],
"keywords" : [
"zf2",
"zend server",
"api",
"cli"
],
"homepage" : "https://github.com/zendtech/ZendServerSDK",
"license" : [
"BSD-3-Clause"
],
"require" : {
"php" : ">=5.3.3",
"openlss/lib-array2xml" : "dev-master",
"zenddevops/webapi" : "dev-master"
},
"require-dev" : {
"phpunit/phpunit" : "3.7.*",
"zendframework/zendframework" : "2.*"
},
"autoload" : {
"psr-0" : {
"Client\\" : "module/Client/src"
},
"classmap" : [
"module/Client/Module.php"
]
},
"support" : {},
"bin" : [
"bin/zs-client.php"
]
}