composer.json 514 B

123456789101112131415161718192021222324
  1. {
  2. "name": "topthink/think-cache",
  3. "description": "Cache Manager",
  4. "license": "Apache-2.0",
  5. "authors": [
  6. {
  7. "name": "liu21st",
  8. "email": "liu21st@gmail.com"
  9. }
  10. ],
  11. "require": {
  12. "php": ">=7.1.0",
  13. "psr/cache": "~1.0",
  14. "topthink/think-container": "~2.0",
  15. "psr/simple-cache": "^1.0",
  16. "opis/closure": "^3.1"
  17. },
  18. "autoload": {
  19. "psr-4": {
  20. "think\\": "src"
  21. },
  22. "files": []
  23. }
  24. }