composer.json 589 B

1234567891011121314151617181920212223242526272829303132333435
  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. "robmorgan/phinx": "^0.16.10",
  12. "six-shop/core": ">=0.6 <1.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\\System\\": "src"
  24. },
  25. "files": [
  26. "src/helper.php"
  27. ]
  28. },
  29. "extra": {
  30. "sixshop": {
  31. "id": "system",
  32. "class": "SixShop\\System\\Extension"
  33. }
  34. }
  35. }