composer.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. "docs": "https://hyperf.wiki",
  13. "issues": "https://github.com/hyperf/hyperf/issues",
  14. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  15. "source": "https://github.com/hyperf/hyperf"
  16. },
  17. "require": {
  18. "php": ">=7.2",
  19. "psr/container": "^1.0|^2.0",
  20. "psr/simple-cache": "^1.0",
  21. "hyperf/contract": "~2.2.0",
  22. "hyperf/utils": "~2.2.0"
  23. },
  24. "suggest": {
  25. "hyperf/di": "Use cache annotations.",
  26. "hyperf/event": "Use listener to delete annotation cache."
  27. },
  28. "autoload": {
  29. "psr-4": {
  30. "Hyperf\\Cache\\": "src/"
  31. }
  32. },
  33. "autoload-dev": {
  34. "psr-4": {
  35. "HyperfTest\\Cache\\": "tests/"
  36. }
  37. },
  38. "config": {
  39. "sort-packages": true
  40. },
  41. "extra": {
  42. "branch-alias": {
  43. "dev-master": "2.2-dev"
  44. },
  45. "hyperf": {
  46. "config": "Hyperf\\Cache\\ConfigProvider"
  47. }
  48. }
  49. }