composer.json 614 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "six-shop/system",
  3. "description": "系统扩展",
  4. "type": "sixshop-extension",
  5. "keywords": [
  6. "sixshop",
  7. "thinkphp"
  8. ],
  9. "require": {
  10. "php": ">=8.3",
  11. "ext-mbstring": "*",
  12. "robmorgan/phinx": "^0.16.10",
  13. "six-shop/core": ">=0.6 <1.0"
  14. },
  15. "authors": [
  16. {
  17. "name": "hui he",
  18. "email": "runphp@qq.com"
  19. }
  20. ],
  21. "license": "MIT",
  22. "autoload": {
  23. "psr-4": {
  24. "SixShop\\System\\": "src"
  25. },
  26. "files": [
  27. "src/helper.php"
  28. ]
  29. },
  30. "extra": {
  31. "sixshop": {
  32. "id": "system",
  33. "class": "SixShop\\System\\Extension"
  34. }
  35. }
  36. }