composer.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "react/http",
  3. "description": "Event-driven, streaming HTTP client and server implementation for ReactPHP",
  4. "keywords": ["HTTP client", "HTTP server", "HTTP", "HTTPS", "event-driven", "streaming", "client", "server", "PSR-7", "async", "ReactPHP"],
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "Christian Lück",
  9. "homepage": "https://clue.engineering/",
  10. "email": "christian@clue.engineering"
  11. },
  12. {
  13. "name": "Cees-Jan Kiewiet",
  14. "homepage": "https://wyrihaximus.net/",
  15. "email": "reactphp@ceesjankiewiet.nl"
  16. },
  17. {
  18. "name": "Jan Sorgalla",
  19. "homepage": "https://sorgalla.com/",
  20. "email": "jsorgalla@gmail.com"
  21. },
  22. {
  23. "name": "Chris Boden",
  24. "homepage": "https://cboden.dev/",
  25. "email": "cboden@gmail.com"
  26. }
  27. ],
  28. "require": {
  29. "php": ">=5.3.0",
  30. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  31. "fig/http-message-util": "^1.1",
  32. "psr/http-message": "^1.0",
  33. "react/event-loop": "^1.2",
  34. "react/promise": "^3 || ^2.3 || ^1.2.1",
  35. "react/promise-stream": "^1.4",
  36. "react/socket": "^1.12",
  37. "react/stream": "^1.2",
  38. "ringcentral/psr7": "^1.2"
  39. },
  40. "require-dev": {
  41. "clue/http-proxy-react": "^1.8",
  42. "clue/reactphp-ssh-proxy": "^1.4",
  43. "clue/socks-react": "^1.4",
  44. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  45. "react/async": "^4 || ^3 || ^2",
  46. "react/promise-timer": "^1.9"
  47. },
  48. "autoload": {
  49. "psr-4": { "React\\Http\\": "src" }
  50. },
  51. "autoload-dev": {
  52. "psr-4": { "React\\Tests\\Http\\": "tests" }
  53. }
  54. }