You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
1.6 KiB

3 years ago
  1. {
  2. "name": "guzzlehttp/psr7",
  3. "type": "library",
  4. "description": "PSR-7 message implementation that also provides common utility methods",
  5. "keywords": [
  6. "request",
  7. "response",
  8. "message",
  9. "stream",
  10. "http",
  11. "uri",
  12. "url",
  13. "psr-7"
  14. ],
  15. "license": "MIT",
  16. "authors": [
  17. {
  18. "name": "Michael Dowling",
  19. "email": "mtdowling@gmail.com",
  20. "homepage": "https://github.com/mtdowling"
  21. },
  22. {
  23. "name": "Tobias Schultze",
  24. "homepage": "https://github.com/Tobion"
  25. },
  26. {
  27. "name": "Márk Sági-Kazár",
  28. "email": "mark.sagikazar@gmail.com",
  29. "homepage": "https://sagikazarmark.hu"
  30. }
  31. ],
  32. "require": {
  33. "php": "^7.2.5 || ^8.0",
  34. "psr/http-factory": "^1.0",
  35. "psr/http-message": "^1.0",
  36. "ralouphie/getallheaders": "^3.0"
  37. },
  38. "provide": {
  39. "psr/http-factory-implementation": "1.0",
  40. "psr/http-message-implementation": "1.0"
  41. },
  42. "require-dev": {
  43. "bamarni/composer-bin-plugin": "^1.4.1",
  44. "http-interop/http-factory-tests": "^0.9",
  45. "phpunit/phpunit": "^8.5.8 || ^9.3.10"
  46. },
  47. "suggest": {
  48. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  49. },
  50. "extra": {
  51. "branch-alias": {
  52. "dev-master": "2.0-dev"
  53. }
  54. },
  55. "autoload": {
  56. "psr-4": {
  57. "GuzzleHttp\\Psr7\\": "src/"
  58. }
  59. },
  60. "autoload-dev": {
  61. "psr-4": {
  62. "GuzzleHttp\\Tests\\Psr7\\": "tests/"
  63. }
  64. }
  65. }