composer.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. {
  2. "name": "guzzlehttp/guzzle",
  3. "type": "library",
  4. "description": "Guzzle is a PHP HTTP client library",
  5. "keywords": [
  6. "framework",
  7. "http",
  8. "rest",
  9. "web service",
  10. "curl",
  11. "client",
  12. "HTTP client"
  13. ],
  14. "homepage": "http://guzzlephp.org/",
  15. "license": "MIT",
  16. "authors": [
  17. {
  18. "name": "Graham Campbell",
  19. "email": "hello@gjcampbell.co.uk",
  20. "homepage": "https://github.com/GrahamCampbell"
  21. },
  22. {
  23. "name": "Michael Dowling",
  24. "email": "mtdowling@gmail.com",
  25. "homepage": "https://github.com/mtdowling"
  26. },
  27. {
  28. "name": "Jeremy Lindblom",
  29. "email": "jeremeamia@gmail.com",
  30. "homepage": "https://github.com/jeremeamia"
  31. },
  32. {
  33. "name": "George Mponos",
  34. "email": "gmponos@gmail.com",
  35. "homepage": "https://github.com/gmponos"
  36. },
  37. {
  38. "name": "Tobias Nyholm",
  39. "email": "tobias.nyholm@gmail.com",
  40. "homepage": "https://github.com/Nyholm"
  41. },
  42. {
  43. "name": "Márk Sági-Kazár",
  44. "email": "mark.sagikazar@gmail.com",
  45. "homepage": "https://github.com/sagikazarmark"
  46. },
  47. {
  48. "name": "Tobias Schultze",
  49. "email": "webmaster@tubo-world.de",
  50. "homepage": "https://github.com/Tobion"
  51. }
  52. ],
  53. "require": {
  54. "php": ">=5.5",
  55. "ext-json": "*",
  56. "symfony/polyfill-intl-idn": "^1.17",
  57. "guzzlehttp/promises": "^1.0",
  58. "guzzlehttp/psr7": "^1.9"
  59. },
  60. "require-dev": {
  61. "ext-curl": "*",
  62. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  63. "psr/log": "^1.1"
  64. },
  65. "suggest": {
  66. "psr/log": "Required for using the Log middleware"
  67. },
  68. "config": {
  69. "sort-packages": true,
  70. "allow-plugins": {
  71. "bamarni/composer-bin-plugin": true
  72. }
  73. },
  74. "extra": {
  75. "branch-alias": {
  76. "dev-master": "6.5-dev"
  77. }
  78. },
  79. "autoload": {
  80. "psr-4": {
  81. "GuzzleHttp\\": "src/"
  82. },
  83. "files": [
  84. "src/functions_include.php"
  85. ]
  86. },
  87. "autoload-dev": {
  88. "psr-4": {
  89. "GuzzleHttp\\Tests\\": "tests/"
  90. }
  91. }
  92. }