-
Notifications
You must be signed in to change notification settings - Fork 249
/
composer.json
43 lines (43 loc) · 1.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
38
39
40
41
42
43
{
"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": "jamie.hannaford@rackspace.com",
"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.1",
"jakub-onderka/php-parallel-lint": "0.*",
"fabpot/php-cs-fixer": "1.0.*@dev",
"apigen/apigen": "~4.0"
},
"extra": {
"branch-alias": {
"dev-working": "1.16-dev"
}
}
}