composer.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "react/event-loop",
  3. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  4. "keywords": ["event-loop", "asynchronous"],
  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. },
  31. "require-dev": {
  32. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35"
  33. },
  34. "suggest": {
  35. "ext-event": "~1.0 for ExtEventLoop",
  36. "ext-pcntl": "For signal handling support when using the StreamSelectLoop",
  37. "ext-uv": "* for ExtUvLoop"
  38. },
  39. "autoload": {
  40. "psr-4": {
  41. "React\\EventLoop\\": "src"
  42. }
  43. },
  44. "autoload-dev": {
  45. "psr-4": {
  46. "React\\Tests\\EventLoop\\": "tests"
  47. }
  48. }
  49. }