composer.json 747 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "six-shop/core",
  3. "description": "核心扩展",
  4. "type": "composer-plugin",
  5. "keywords": [
  6. "sixshop",
  7. "thinkphp"
  8. ],
  9. "license": "MIT",
  10. "autoload": {
  11. "psr-4": {
  12. "SixShop\\Core\\": "src/"
  13. }
  14. },
  15. "authors": [
  16. {
  17. "name": "hui he",
  18. "email": "runphp@qq.com"
  19. }
  20. ],
  21. "require": {
  22. "php": ">=8.3",
  23. "composer-plugin-api": "^2.0",
  24. "topthink/framework": "^8.1",
  25. "topthink/think-orm": "^4.0"
  26. },
  27. "extra": {
  28. "think": {
  29. "services": [
  30. "SixShop\\Core\\Service\\CoreService"
  31. ]
  32. },
  33. "class": "SixShop\\Core\\ExtensionInstaller"
  34. }
  35. }