composer.json 758 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "solution9th/laravel-file-cache-gc",
  3. "description": "Laravel file cache garbage collection.",
  4. "keywords": [
  5. "laravel",
  6. "cache clear",
  7. "clear expired file",
  8. "file cache gc",
  9. "expired cache file clear",
  10. "garbage collection"
  11. ],
  12. "type": "library",
  13. "license": "MIT",
  14. "authors": [
  15. {
  16. "name": "rookie0",
  17. "email": "j4fdot@qq.com"
  18. }
  19. ],
  20. "require": {},
  21. "autoload": {
  22. "psr-4": {
  23. "Solution9th\\LaravelFileCacheGC\\": "src/"
  24. }
  25. },
  26. "extra": {
  27. "laravel": {
  28. "providers": [
  29. "Solution9th\\LaravelFileCacheGC\\FileCacheGCServiceProvider"
  30. ]
  31. }
  32. }
  33. }