composer.json 467 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "ibrand/laravel-cache",
  3. "type": "library",
  4. "description": "Packaging commonly used caching usage extend Laravel's cache",
  5. "keywords": [
  6. "ibrand",
  7. "laravel",
  8. "cache"
  9. ],
  10. "license": "MIT",
  11. "authors": [
  12. {
  13. "name": "shjchen",
  14. "email": "zdbd@vip.qq.com"
  15. }
  16. ],
  17. "require": {
  18. "php": ">=5.6"
  19. },
  20. "autoload": {
  21. "psr-4": {
  22. "iBrand\\Cache\\": "src/"
  23. },
  24. "files": [
  25. "src/helps.php"
  26. ]
  27. }
  28. }