composer.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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/support": "~3.1.0",
  23. "hyperf/utils": "~3.1.0",
  24. "psr/container": "^1.0 || ^2.0",
  25. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  26. },
  27. "suggest": {
  28. "hyperf/di": "Use cache annotations.",
  29. "hyperf/event": "Use listener to delete annotation cache."
  30. },
  31. "autoload": {
  32. "psr-4": {
  33. "Hyperf\\Cache\\": "src/"
  34. }
  35. },
  36. "autoload-dev": {
  37. "psr-4": {
  38. "HyperfTest\\Cache\\": "tests/"
  39. }
  40. },
  41. "config": {
  42. "sort-packages": true
  43. },
  44. "extra": {
  45. "branch-alias": {
  46. "dev-master": "3.1-dev"
  47. },
  48. "hyperf": {
  49. "config": "Hyperf\\Cache\\ConfigProvider"
  50. }
  51. }
  52. }