composer.json 800 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "swow/psr7-plus",
  3. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  4. "keywords": [
  5. "swow",
  6. "psr7",
  7. "psr17",
  8. "http",
  9. "websocket"
  10. ],
  11. "license": "Apache-2.0",
  12. "authors": [
  13. {
  14. "name": "twose",
  15. "email": "twosee@php.net"
  16. }
  17. ],
  18. "support": {
  19. "issues": "https://github.com/swow/swow"
  20. },
  21. "require": {
  22. "php": ">=8.0",
  23. "psr/http-client": "^1.0",
  24. "psr/http-factory": "^1.0",
  25. "psr/http-message": "^1.1|^2.0"
  26. },
  27. "autoload": {
  28. "psr-4": {
  29. "Swow\\Psr7\\Message\\": "src/Message/"
  30. }
  31. },
  32. "config": {
  33. "process-timeout": 0,
  34. "sort-packages": true
  35. }
  36. }