composer.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "hyperf/cache",
  3. "description": "A cache component for hyperf.",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "hyperf",
  8. "cache"
  9. ],
  10. "homepage": "https://hyperf.io",
  11. "support": {
  12. "issues": "https://github.com/hyperf/hyperf/issues",
  13. "source": "https://github.com/hyperf/hyperf",
  14. "docs": "https://hyperf.wiki",
  15. "pull-request": "https://github.com/hyperf/hyperf/pulls"
  16. },
  17. "require": {
  18. "php": ">=8.1",
  19. "hyperf/codec": "~3.1.0",
  20. "hyperf/collection": "~3.1.0",
  21. "hyperf/contract": "~3.1.0",
  22. "hyperf/coordinator": "~3.1.0",
  23. "hyperf/coroutine": "~3.1.0",
  24. "hyperf/stringable": "~3.1.0",
  25. "hyperf/support": "~3.1.0",
  26. "psr/container": "^1.0 || ^2.0",
  27. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  28. },
  29. "suggest": {
  30. "hyperf/di": "Use cache annotations.",
  31. "hyperf/event": "Use listener to delete annotation cache."
  32. },
  33. "autoload": {
  34. "psr-4": {
  35. "Hyperf\\Cache\\": "src/"
  36. }
  37. },
  38. "autoload-dev": {
  39. "psr-4": {
  40. "HyperfTest\\Cache\\": "tests/"
  41. }
  42. },
  43. "config": {
  44. "sort-packages": true
  45. },
  46. "extra": {
  47. "branch-alias": {
  48. "dev-master": "3.1-dev"
  49. },
  50. "hyperf": {
  51. "config": "Hyperf\\Cache\\ConfigProvider"
  52. }
  53. }
  54. }