forked from DigitalOceanPHP/Client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.5 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
{
"name": "toin0u/digitalocean-v2",
"description": "DigitalOcean API v2 client for PHP",
"keywords": ["DigitalOcean", "API", "Cloud Hosting", "SSD", "VPS"],
"license": "MIT",
"authors": [
{
"name": "Antoine Corcy",
"email": "[email protected]"
},
{
"name": "Graham Campbell",
"email": "[email protected]"
},
{
"name": "Yassir Hannoun",
"email": "[email protected]"
},
{
"name": "Glenn Jacobs",
"email": "[email protected]"
},
{
"name": "Cameron Van Orman",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2.5 || ^8.0",
"ext-json": "*",
"php-http/client-common": "^2.3",
"php-http/discovery": "^1.12",
"php-http/httplug": "^2.2",
"psr/http-client-implementation": "^1.0",
"psr/http-factory-implementation": "^1.0",
"psr/http-message": "^1.0",
"symfony/polyfill-php80": "^1.17"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.4.1",
"guzzlehttp/guzzle": "^7.2",
"http-interop/http-factory-guzzle": "^1.0"
},
"autoload": {
"psr-4": {
"DigitalOceanV2\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DigitalOceanV2\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
}
}