composer.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "toin0u/http-adapter",
  3. "type": "library",
  4. "description": "HttpAdapter PHP 5.3+ library",
  5. "keywords": ["Http", "Adapter"],
  6. "homepage": "https://github.com/toin0u/HttpAdapter",
  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/HttpAdapter/issues",
  18. "source": "https://github.com/toin0u/HttpAdapter"
  19. },
  20. "require": {
  21. "php": ">=5.3.0",
  22. "ext-curl" : "*"
  23. },
  24. "require-dev": {
  25. "kriswallsmith/buzz": "@stable",
  26. "guzzle/guzzle": "@stable",
  27. "zendframework/zendframework": "~2.1",
  28. "satooshi/php-coveralls": "~0.6"
  29. },
  30. "suggest": {
  31. "kriswallsmith/buzz": "Enabling Buzz allows you to use the BuzzHttpAdapter",
  32. "guzzle/guzzle": "Enabling Guzzle allows you to use the GuzzleHttpAdapter",
  33. "zendframework/zendframework": "Enabling Zend Http allows you to use the ZendHttpAdapter"
  34. },
  35. "autoload": {
  36. "psr-0": { "HttpAdapter": "src/" }
  37. },
  38. "extra": {
  39. "branch-alias": {
  40. "dev-master": "1.0-dev"
  41. }
  42. }
  43. }