composer.json 808 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "guzzle/http",
  3. "description": "HTTP libraries used by Guzzle",
  4. "homepage": "http://guzzlephp.org/",
  5. "keywords": ["http client", "http", "client", "Guzzle", "curl"],
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Michael Dowling",
  10. "email": "mtdowling@gmail.com",
  11. "homepage": "https://github.com/mtdowling"
  12. }
  13. ],
  14. "require": {
  15. "php": ">=5.3.2",
  16. "guzzle/common": "self.version",
  17. "guzzle/parser": "self.version",
  18. "guzzle/stream": "self.version"
  19. },
  20. "suggest": {
  21. "ext-curl": "*"
  22. },
  23. "autoload": {
  24. "psr-0": { "Guzzle\\Http": "" }
  25. },
  26. "target-dir": "Guzzle/Http",
  27. "extra": {
  28. "branch-alias": {
  29. "dev-master": "3.7-dev"
  30. }
  31. }
  32. }