-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (38 loc) · 1.17 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
{
"name" : "toin0u/digitalocean-laravel",
"type" : "library",
"description" : "DigitalOcean API PHP 5.3+ library for Laravel 4",
"keywords" : ["laravel", "DigitalOcean", "API", "Cloud Hosting", "SSD", "VPS"],
"homepage" : "https://github.com/toin0u/DigitalOcean-laravel",
"license" : "MIT",
"authors" : [{
"name" : "Antoine Corcy",
"email" : "contact@sbin.dk",
"homepage" : "http://sbin.dk",
"role" : "Developer"
}],
"support" : {
"issues" : "https://github.com/toin0u/DigitalOcean-laravel/issues",
"source" : "https://github.com/toin0u/DigitalOcean-laravel"
},
"require" : {
"php" : ">=5.3.0",
"illuminate/support" : "~4.0",
"toin0u/digitalocean" : "~1.4"
},
"require-dev" : {
"phpunit/phpunit" : "~4.0",
"orchestra/testbench" : "~2.0",
"satooshi/php-coveralls" : "~0.6"
},
"autoload" : {
"psr-0" : {
"Toin0u\\DigitalOcean" : "src/"
}
},
"extra" : {
"branch-alias" : {
"dev-master" : "0.2-dev"
}
}
}