composer.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "react/promise-timer",
  3. "description": "A trivial implementation of timeouts for Promises, built on top of ReactPHP.",
  4. "keywords": ["Promise", "timeout", "timer", "event-loop", "ReactPHP", "async"],
  5. "homepage": "https://github.com/reactphp/promise-timer",
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Christian Lück",
  10. "homepage": "https://clue.engineering/",
  11. "email": "christian@clue.engineering"
  12. },
  13. {
  14. "name": "Cees-Jan Kiewiet",
  15. "homepage": "https://wyrihaximus.net/",
  16. "email": "reactphp@ceesjankiewiet.nl"
  17. },
  18. {
  19. "name": "Jan Sorgalla",
  20. "homepage": "https://sorgalla.com/",
  21. "email": "jsorgalla@gmail.com"
  22. },
  23. {
  24. "name": "Chris Boden",
  25. "homepage": "https://cboden.dev/",
  26. "email": "cboden@gmail.com"
  27. }
  28. ],
  29. "autoload": {
  30. "psr-4": { "React\\Promise\\Timer\\": "src/" },
  31. "files": [ "src/functions_include.php" ]
  32. },
  33. "autoload-dev": {
  34. "psr-4": { "React\\Tests\\Promise\\Timer\\": "tests/" }
  35. },
  36. "require": {
  37. "php": ">=5.3",
  38. "react/event-loop": "^1.2",
  39. "react/promise": "^3.0 || ^2.7.0 || ^1.2.1"
  40. },
  41. "require-dev": {
  42. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35"
  43. }
  44. }