forked from rackspace/php-opencloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1.01 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
{
"name": "rackspace/php-opencloud",
"description": "PHP SDK for Rackspace/OpenStack APIs",
"keywords": ["rackspace", "openstack", "opencloud", "swift", "nova"],
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Jamie Hannaford",
"email": "[email protected]",
"homepage" : "https://github.com/jamiehannaford"
}
],
"autoload": {
"psr-0": {
"OpenCloud": ["lib/"]
}
},
"autoload-dev": {
"psr-0": {
"OpenCloud": ["tests/"]
}
},
"require": {
"php" : ">=5.4",
"guzzle/guzzle" : "~3.8",
"psr/log": "~1.0",
"mikemccabe/json-patch-php": "~0.1"
},
"require-dev" : {
"phpunit/phpunit": "4.3.*",
"phpspec/prophecy": "~1.4",
"satooshi/php-coveralls": "0.6.*@dev",
"jakub-onderka/php-parallel-lint": "0.*",
"fabpot/php-cs-fixer": "1.0.*@dev",
"apigen/apigen": "~4.0"
}
}