composer.json 867 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "qingbing/php-file-cache",
  3. "description": "组件'file-cache' : 文件缓存的相关解析和操作",
  4. "type": "library",
  5. "license": "MIT",
  6. "keywords": [
  7. "php",
  8. "cache",
  9. "FileCache",
  10. "caching",
  11. "file-cache",
  12. "file-caching"
  13. ],
  14. "homepage": "http://www.phpcorner.net",
  15. "authors": [
  16. {
  17. "name": "qingbing",
  18. "email": "780042175@qq.com"
  19. }
  20. ],
  21. "require": {
  22. "qingbing/php-helper": ">=1.0, <2.0",
  23. "qingbing/php-config": ">=1.0, <2.0",
  24. "qingbing/php-abstracts-store": ">=1.0, <2.0"
  25. },
  26. "autoload": {
  27. "psr-4": {
  28. "Components\\": "src/components"
  29. }
  30. },
  31. "autoload-dev": {
  32. "psr-4": {
  33. "TestCore\\": "test/core",
  34. "Test\\": "test/src"
  35. }
  36. }
  37. }