forked from DigitalOceanPHP/Client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (52 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
58
59
60
{
"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": "^7.1.0",
"ext-json": "*"
},
"require-dev": {
"kriswallsmith/buzz": "^0.16",
"guzzlehttp/guzzle": "^5.3|^6.3",
"phpspec/phpspec": "^2.5"
},
"suggest": {
"kriswallsmith/buzz": "To use BuzzAdapter, require kriswallsmith/buzz:^0.16.",
"guzzlehttp/guzzle" : "To use GuzzleHttpAdapter, require guzzlehttp/guzzle:^5.3|^6.3."
},
"autoload": {
"psr-4": {
"DigitalOceanV2\\": "src/"
}
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "2.3-dev"
}
}
}