composer.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. "extra": {
  65. "branch-alias": {
  66. "dev-master": "1.7-dev"
  67. }
  68. },
  69. "config": {
  70. "preferred-install": "dist",
  71. "sort-packages": true,
  72. "allow-plugins": {
  73. "bamarni/composer-bin-plugin": true
  74. }
  75. }
  76. }