composer.json 642 B

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