-
Notifications
You must be signed in to change notification settings - Fork 148
/
composer.json
68 lines (68 loc) · 1.87 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "php-opencloud/openstack",
"description": "PHP SDK for OpenStack APIs. Supports BlockStorage, Compute, Identity, Images, Networking and Metric Gnocchi",
"license": "Apache-2.0",
"keywords": [
"php",
"openstack",
"api",
"sdk"
],
"authors": [
{
"name": "Jamie Hannaford",
"email": "[email protected]",
"homepage": "https://github.com/jamiehannaford"
},
{
"name": "Ha Phan",
"email": "[email protected]",
"homepage": "https://github.com/haphan"
},
{
"name": "Konstantin Babushkin",
"email": "[email protected]",
"homepage": "https://github.com/k0ka"
}
],
"homepage": "https://github.com/php-opencloud/openstack",
"require": {
"php": "^7.2.5 || ^8.0",
"guzzlehttp/guzzle": "^7.0",
"guzzlehttp/psr7": ">=1.7",
"guzzlehttp/uri-template": "^0.2 || ^1.0",
"justinrainbow/json-schema": "^5.2"
},
"require-dev": {
"ext-json": "*",
"ergebnis/composer-normalize": "^2.0",
"friendsofphp/php-cs-fixer": "^3",
"php-coveralls/php-coveralls": "^2.0",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpspec/prophecy": "^1.17",
"phpunit/phpunit": ">=8.5.23 <9.0",
"psr/log": "^1.0"
},
"autoload": {
"psr-4": {
"OpenStack\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OpenStack\\Sample\\": "tests/sample/",
"OpenStack\\Test\\": "tests/unit/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
}
}