composer.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. "require": {
  30. "php": ">=5.3",
  31. "react/event-loop": "^1.2",
  32. "react/promise": "^3.2 || ^2.7.0 || ^1.2.1"
  33. },
  34. "require-dev": {
  35. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  36. },
  37. "autoload": {
  38. "psr-4": {
  39. "React\\Promise\\Timer\\": "src/"
  40. },
  41. "files": [
  42. "src/functions_include.php"
  43. ]
  44. },
  45. "autoload-dev": {
  46. "psr-4": {
  47. "React\\Tests\\Promise\\Timer\\": "tests/"
  48. }
  49. }
  50. }