composer.json 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. {
  2. "name": "guzzlehttp/guzzle",
  3. "description": "Guzzle is a PHP HTTP client library",
  4. "license": "MIT",
  5. "keywords": [
  6. "framework",
  7. "http",
  8. "rest",
  9. "web service",
  10. "curl",
  11. "client",
  12. "HTTP client",
  13. "PSR-7",
  14. "PSR-18"
  15. ],
  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": "^7.2.5 || ^8.0",
  55. "ext-json": "*",
  56. "guzzlehttp/promises": "^2.5.1",
  57. "guzzlehttp/psr7": "^2.13",
  58. "psr/http-client": "^1.0",
  59. "symfony/deprecation-contracts": "^2.5 || ^3.0",
  60. "symfony/polyfill-php80": "^1.25"
  61. },
  62. "require-dev": {
  63. "ext-curl": "*",
  64. "bamarni/composer-bin-plugin": "^1.8.2",
  65. "guzzle/client-integration-tests": "3.0.3",
  66. "guzzlehttp/test-server": "^0.7",
  67. "php-http/message-factory": "^1.1",
  68. "phpunit/phpunit": "^8.5.52 || ^9.6.34",
  69. "psr/log": "^1.1 || ^2.0 || ^3.0"
  70. },
  71. "provide": {
  72. "psr/http-client-implementation": "1.0"
  73. },
  74. "suggest": {
  75. "ext-curl": "Required for CURL handler support",
  76. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  77. "psr/log": "Required for using the Log middleware"
  78. },
  79. "repositories": [
  80. {
  81. "type": "package",
  82. "package": {
  83. "name": "guzzle/client-integration-tests",
  84. "version": "v3.0.3",
  85. "require": {
  86. "guzzlehttp/psr7": "^1.7 || ^2.0",
  87. "php": "^7.2.5 || ^8.0",
  88. "php-http/message": "^1.0 || ^2.0",
  89. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.11",
  90. "th3n3rd/cartesian-product": "^0.3"
  91. },
  92. "autoload": {
  93. "psr-4": {
  94. "Http\\Client\\Tests\\": "src/"
  95. }
  96. },
  97. "bin": [
  98. "bin/http_test_server"
  99. ],
  100. "dist": {
  101. "type": "zip",
  102. "url": "https://codeload.github.com/guzzle/client-integration-tests/zip/30edbabe49dedd95e3f21d8a25438f767b653d75"
  103. }
  104. }
  105. }
  106. ],
  107. "autoload": {
  108. "psr-4": {
  109. "GuzzleHttp\\": "src/"
  110. },
  111. "files": [
  112. "src/functions_include.php"
  113. ]
  114. },
  115. "autoload-dev": {
  116. "psr-4": {
  117. "GuzzleHttp\\Tests\\": "tests/"
  118. }
  119. },
  120. "config": {
  121. "allow-plugins": {
  122. "bamarni/composer-bin-plugin": true
  123. },
  124. "preferred-install": "dist",
  125. "sort-packages": true
  126. },
  127. "extra": {
  128. "bamarni-bin": {
  129. "bin-links": true,
  130. "forward-command": false
  131. }
  132. }
  133. }