composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "react/cache",
  3. "description": "Async, Promise-based cache interface for ReactPHP",
  4. "keywords": ["cache", "caching", "promise", "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. "react/promise": "^3.0 || ^2.0 || ^1.1"
  31. },
  32. "require-dev": {
  33. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  34. },
  35. "autoload": {
  36. "psr-4": {
  37. "React\\Cache\\": "src/"
  38. }
  39. },
  40. "autoload-dev": {
  41. "psr-4": {
  42. "React\\Tests\\Cache\\": "tests/"
  43. }
  44. }
  45. }