forked from usefulz/vultr-api-client
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
35 lines (35 loc) · 856 Bytes
/
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
{
"name": "malc0mn/vultr-api-client",
"description": "PHP API client for api.vultr.com",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/malc0mn/vultr-api-client",
"authors": [
{
"name": "Zach aka usefulz",
"email": "[email protected]"
},
{
"name": "malc0mn",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0"
},
"require-dev": {
"guzzlehttp/guzzle": "5.3 - 6.3",
"phpunit/phpunit": ">=4.8"
},
"suggest": {
"guzzlehttp/guzzle": "To use GuzzleHttpAdapter, require guzzlehttp/guzzle:^5.0|^6.0"
},
"autoload": {
"psr-4": { "Vultr\\": "src" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}