forked from jamiehannaford/php-opencloud-zf2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
29 lines (29 loc) · 808 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
{
"name": "jamiehannaford/php-opencloud-zf2",
"description": "ZF2 module that allows easy interaction with Rackspace/OpenStack APIs",
"minimum-stability": "stable",
"license": "Apache-2.0",
"authors": [
{
"name": "Jamie Hannaford",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"OpenCloud\\Zf2\\": "src/",
"OpenCloud\\Tests\\Zf2\\": "tests/OpenCloud/"
},
"files": ["Module.php"]
},
"require": {
"php": ">=5.3.3",
"rackspace/php-opencloud": "~1.9"
},
"require-dev" : {
"guzzle/plugin-mock": "3.8.*@dev",
"guzzle/plugin-log": "3.8.*@dev",
"psr/log": "1.0.*",
"satooshi/php-coveralls": "0.6.*@dev"
}
}