Keine Beschreibung

composer.json 3.8KB

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