composer.json 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "guzzle/guzzle",
  3. "type": "library",
  4. "description": "PHP HTTP client. This library is deprecated in favor of https://packagist.org/packages/guzzlehttp/guzzle",
  5. "keywords": ["framework", "http", "rest", "web service", "curl", "client", "HTTP client"],
  6. "homepage": "http://guzzlephp.org/",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Michael Dowling",
  11. "email": "mtdowling@gmail.com",
  12. "homepage": "https://github.com/mtdowling"
  13. },
  14. {
  15. "name": "Guzzle Community",
  16. "homepage": "https://github.com/guzzle/guzzle/contributors"
  17. }
  18. ],
  19. "replace": {
  20. "guzzle/batch": "self.version",
  21. "guzzle/cache": "self.version",
  22. "guzzle/common": "self.version",
  23. "guzzle/http": "self.version",
  24. "guzzle/inflection": "self.version",
  25. "guzzle/iterator": "self.version",
  26. "guzzle/log": "self.version",
  27. "guzzle/parser": "self.version",
  28. "guzzle/plugin": "self.version",
  29. "guzzle/plugin-async": "self.version",
  30. "guzzle/plugin-backoff": "self.version",
  31. "guzzle/plugin-cache": "self.version",
  32. "guzzle/plugin-cookie": "self.version",
  33. "guzzle/plugin-curlauth": "self.version",
  34. "guzzle/plugin-error-response": "self.version",
  35. "guzzle/plugin-history": "self.version",
  36. "guzzle/plugin-log": "self.version",
  37. "guzzle/plugin-md5": "self.version",
  38. "guzzle/plugin-mock": "self.version",
  39. "guzzle/plugin-oauth": "self.version",
  40. "guzzle/service": "self.version",
  41. "guzzle/stream": "self.version"
  42. },
  43. "require": {
  44. "php": ">=5.3.3",
  45. "ext-curl": "*",
  46. "symfony/event-dispatcher": "~2.1"
  47. },
  48. "autoload": {
  49. "psr-0": {
  50. "Guzzle": "src/",
  51. "Guzzle\\Tests": "tests/"
  52. }
  53. },
  54. "suggest": {
  55. "guzzlehttp/guzzle": "Guzzle 5 has moved to a new package name. The package you have installed, Guzzle 3, is deprecated."
  56. },
  57. "scripts": {
  58. "test": "phpunit"
  59. },
  60. "require-dev": {
  61. "doctrine/cache": "~1.3",
  62. "symfony/class-loader": "~2.1",
  63. "monolog/monolog": "~1.0",
  64. "psr/log": "~1.0",
  65. "zendframework/zend-cache": "2.*,<2.3",
  66. "zendframework/zend-log": "2.*,<2.3",
  67. "phpunit/phpunit": "3.7.*"
  68. },
  69. "extra": {
  70. "branch-alias": {
  71. "dev-master": "3.9-dev"
  72. }
  73. }
  74. }