composer.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "guzzlehttp/psr7",
  3. "description": "PSR-7 message implementation that also provides common utility methods",
  4. "keywords": ["request", "response", "message", "stream", "http", "uri", "url", "psr-7"],
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "Graham Campbell",
  9. "email": "hello@gjcampbell.co.uk",
  10. "homepage": "https://github.com/GrahamCampbell"
  11. },
  12. {
  13. "name": "Michael Dowling",
  14. "email": "mtdowling@gmail.com",
  15. "homepage": "https://github.com/mtdowling"
  16. },
  17. {
  18. "name": "George Mponos",
  19. "email": "gmponos@gmail.com",
  20. "homepage": "https://github.com/gmponos"
  21. },
  22. {
  23. "name": "Tobias Nyholm",
  24. "email": "tobias.nyholm@gmail.com",
  25. "homepage": "https://github.com/Nyholm"
  26. },
  27. {
  28. "name": "Márk Sági-Kazár",
  29. "email": "mark.sagikazar@gmail.com",
  30. "homepage": "https://github.com/sagikazarmark"
  31. },
  32. {
  33. "name": "Tobias Schultze",
  34. "email": "webmaster@tubo-world.de",
  35. "homepage": "https://github.com/Tobion"
  36. }
  37. ],
  38. "require": {
  39. "php": ">=5.4.0",
  40. "psr/http-message": "~1.0",
  41. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  42. },
  43. "require-dev": {
  44. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10",
  45. "ext-zlib": "*"
  46. },
  47. "provide": {
  48. "psr/http-message-implementation": "1.0"
  49. },
  50. "suggest": {
  51. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  52. },
  53. "autoload": {
  54. "psr-4": {
  55. "GuzzleHttp\\Psr7\\": "src/"
  56. },
  57. "files": ["src/functions_include.php"]
  58. },
  59. "autoload-dev": {
  60. "psr-4": {
  61. "GuzzleHttp\\Tests\\Psr7\\": "tests/"
  62. }
  63. },
  64. "config": {
  65. "preferred-install": "dist",
  66. "sort-packages": true,
  67. "allow-plugins": {
  68. "bamarni/composer-bin-plugin": true
  69. }
  70. }
  71. }