composer.json 622 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "six-shop/filesystem",
  3. "description": "文件管理系统",
  4. "type": "sixshop-extension",
  5. "keywords": [
  6. "sixshop",
  7. "thinkphp"
  8. ],
  9. "require": {
  10. "php": ">=8.3",
  11. "six-shop/core": ">=0.6.4 <1.0",
  12. "topthink/think-filesystem": "^3.0"
  13. },
  14. "authors": [
  15. {
  16. "name": "hui he",
  17. "email": "runphp@qq.com"
  18. }
  19. ],
  20. "license": "MIT",
  21. "autoload": {
  22. "psr-4": {
  23. "SixShop\\Filesystem\\": "src"
  24. },
  25. "files": [
  26. "src/functions.php"
  27. ]
  28. },
  29. "extra": {
  30. "sixshop": {
  31. "id": "filesystem",
  32. "class": "SixShop\\Filesystem\\Extension"
  33. }
  34. }
  35. }