composer.json 799 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "psr/http-factory",
  3. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  4. "keywords": [
  5. "psr",
  6. "psr-7",
  7. "psr-17",
  8. "http",
  9. "factory",
  10. "message",
  11. "request",
  12. "response"
  13. ],
  14. "license": "MIT",
  15. "authors": [
  16. {
  17. "name": "PHP-FIG",
  18. "homepage": "https://www.php-fig.org/"
  19. }
  20. ],
  21. "support": {
  22. "source": "https://github.com/php-fig/http-factory"
  23. },
  24. "require": {
  25. "php": ">=7.1",
  26. "psr/http-message": "^1.0 || ^2.0"
  27. },
  28. "autoload": {
  29. "psr-4": {
  30. "Psr\\Http\\Message\\": "src/"
  31. }
  32. },
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "1.0.x-dev"
  36. }
  37. }
  38. }