composer.json 998 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. "composer/composer": "^2.8.11",
  25. "topthink/framework": "^8.1",
  26. "topthink/think-orm": "^4.0",
  27. "topthink/think-helper": "^3.1.11",
  28. "topthink/think-ide-helper": "^2.0",
  29. "topthink/think-migration": "^3.1.1",
  30. "topthink/think-multi-app": "^1.1.1",
  31. "topthink/think-queue": "^3.0.12",
  32. "topthink/think-view": "^2.0.5",
  33. "topthink/think-worker": "^5.0.2",
  34. "opis/closure": "^4.3.1",
  35. "workerman/crontab": "^1.0.7"
  36. },
  37. "extra": {
  38. "think": {
  39. "services": [
  40. "SixShop\\Core\\Service\\CoreService"
  41. ]
  42. },
  43. "class": "SixShop\\Core\\Plugin"
  44. }
  45. }