forked from DigitalOceanPHP/Client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (51 loc) · 1.57 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
{
"name" : "toin0u/digitalocean-v2",
"type" : "library",
"description": "DigitalOcean API v2 PHP 5.4+ library",
"keywords" : ["DigitalOcean", "API", "Cloud Hosting", "SSD", "VPS"],
"homepage" : "https://github.com/toin0u/DigitalOceanV2",
"license" : "MIT",
"authors": [
{
"name" : "Antoine Corcy",
"email" : "[email protected]",
"homepage": "http://sbin.dk",
"role" : "Developer"
},
{
"name" : "Yassir Hannnoun",
"email" : "[email protected]",
"homepage": "https://yassirh.com",
"role" : "Developer"
}
],
"support": {
"issues": "https://github.com/toin0u/DigitalOceanV2/issues",
"source": "https://github.com/toin0u/DigitalOceanV2"
},
"require": {
"php": ">=5.4.0"
},
"require-dev": {
"kriswallsmith/buzz": "~0.10",
"guzzle/guzzle" : "~3.7",
"guzzlehttp/guzzle" : "~5.0",
"phpspec/phpspec" : "~2.0"
},
"suggest": {
"kriswallsmith/buzz": "To use BuzzAdapter, require kriswallsmith/buzz:~0.10.",
"guzzle/guzzle" : "To use GuzzleAdapter, require guzzle/guzzle:~3.7.",
"guzzlehttp/guzzle" : "To use GuzzleV5Adapter, require guzzlehttp/guzzle:~5.0."
},
"autoload": {
"psr-4": {
"DigitalOceanV2\\": "src/"
},
"files": ["src/functions.php"]
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}