composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name" : "toin0u/digitalocean",
  3. "type" : "library",
  4. "description": "DigitalOcean API PHP 5.3+ library",
  5. "keywords" : ["DigitalOcean", "API", "Cloud Hosting", "SSD", "VPS"],
  6. "homepage" : "https://github.com/toin0u/DigitalOcean",
  7. "license" : "MIT",
  8. "authors": [
  9. {
  10. "name" : "Antoine Corcy",
  11. "email" : "contact@sbin.dk",
  12. "homepage": "http://sbin.dk",
  13. "role" : "Developer"
  14. }
  15. ],
  16. "support": {
  17. "issues": "https://github.com/toin0u/DigitalOcean/issues",
  18. "source": "https://github.com/toin0u/DigitalOcean"
  19. },
  20. "require": {
  21. "php" : ">=5.3.0",
  22. "symfony/console" : "~2.3",
  23. "symfony/yaml" : "~2.3",
  24. "toin0u/http-adapter": "~1.0"
  25. },
  26. "require-dev": {
  27. "satooshi/php-coveralls": "~0.6"
  28. },
  29. "autoload": {
  30. "psr-0": { "DigitalOcean": "src/" }
  31. },
  32. "bin": ["digitalocean"],
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "1.4-dev"
  36. }
  37. }
  38. }