composer.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. {
  2. "name": "guzzlehttp/psr7",
  3. "description": "PSR-7 message implementation that also provides common utility methods",
  4. "license": "MIT",
  5. "keywords": [
  6. "request",
  7. "response",
  8. "message",
  9. "stream",
  10. "http",
  11. "uri",
  12. "url",
  13. "psr-7"
  14. ],
  15. "authors": [
  16. {
  17. "name": "Graham Campbell",
  18. "email": "hello@gjcampbell.co.uk",
  19. "homepage": "https://github.com/GrahamCampbell"
  20. },
  21. {
  22. "name": "Michael Dowling",
  23. "email": "mtdowling@gmail.com",
  24. "homepage": "https://github.com/mtdowling"
  25. },
  26. {
  27. "name": "George Mponos",
  28. "email": "gmponos@gmail.com",
  29. "homepage": "https://github.com/gmponos"
  30. },
  31. {
  32. "name": "Tobias Nyholm",
  33. "email": "tobias.nyholm@gmail.com",
  34. "homepage": "https://github.com/Nyholm"
  35. },
  36. {
  37. "name": "Márk Sági-Kazár",
  38. "email": "mark.sagikazar@gmail.com",
  39. "homepage": "https://github.com/sagikazarmark"
  40. },
  41. {
  42. "name": "Tobias Schultze",
  43. "email": "webmaster@tubo-world.de",
  44. "homepage": "https://github.com/Tobion"
  45. },
  46. {
  47. "name": "Márk Sági-Kazár",
  48. "email": "mark.sagikazar@gmail.com",
  49. "homepage": "https://sagikazarmark.hu"
  50. }
  51. ],
  52. "require": {
  53. "php": "^7.2.5 || ^8.0",
  54. "psr/http-factory": "^1.0",
  55. "psr/http-message": "^1.1 || ^2.0",
  56. "ralouphie/getallheaders": "^3.0",
  57. "symfony/deprecation-contracts": "^2.5 || ^3.0",
  58. "symfony/polyfill-php80": "^1.25"
  59. },
  60. "require-dev": {
  61. "bamarni/composer-bin-plugin": "^1.8.2",
  62. "http-interop/http-factory-tests": "1.1.0",
  63. "jshttp/mime-db": "1.54.0.1",
  64. "phpunit/phpunit": "^8.5.52 || ^9.6.34"
  65. },
  66. "provide": {
  67. "psr/http-factory-implementation": "1.0",
  68. "psr/http-message-implementation": "1.0"
  69. },
  70. "suggest": {
  71. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  72. },
  73. "repositories": [
  74. {
  75. "type": "package",
  76. "package": {
  77. "name": "jshttp/mime-db",
  78. "version": "1.54.0.1",
  79. "dist": {
  80. "type": "zip",
  81. "url": "https://codeload.github.com/jshttp/mime-db/zip/0a9fd0bfbc87a725ff638495839114e7807b7177"
  82. }
  83. }
  84. }
  85. ],
  86. "autoload": {
  87. "psr-4": {
  88. "GuzzleHttp\\Psr7\\": "src/"
  89. }
  90. },
  91. "autoload-dev": {
  92. "psr-4": {
  93. "GuzzleHttp\\Tests\\Psr7\\": "tests/"
  94. }
  95. },
  96. "config": {
  97. "allow-plugins": {
  98. "bamarni/composer-bin-plugin": true
  99. },
  100. "preferred-install": "dist",
  101. "sort-packages": true
  102. },
  103. "extra": {
  104. "bamarni-bin": {
  105. "bin-links": true,
  106. "forward-command": false
  107. }
  108. }
  109. }