composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. "files": ["src/functions.php"]
  15. },
  16. "authors": [
  17. {
  18. "name": "hui he",
  19. "email": "runphp@qq.com"
  20. }
  21. ],
  22. "require": {
  23. "php": ">=8.3",
  24. "composer-plugin-api": "^2.0",
  25. "composer/composer": "^2.8.11",
  26. "polyfills/array-first-array-last": "^1.0.1",
  27. "topthink/framework": "^8.1",
  28. "topthink/think-orm": "^4.0",
  29. "topthink/think-helper": "^3.1.11",
  30. "topthink/think-migration": "^3.1.1",
  31. "topthink/think-multi-app": "^1.1.1",
  32. "topthink/think-queue": "^3.0.12",
  33. "topthink/think-view": "^2.0.5",
  34. "topthink/think-worker": "^5.0.2",
  35. "topthink/think-cors": "^1.0.2",
  36. "opis/closure": "^4.3.1",
  37. "workerman/crontab": "^1.0.7"
  38. },
  39. "extra": {
  40. "think": {
  41. "services": [
  42. "SixShop\\Core\\Service\\CoreService"
  43. ]
  44. },
  45. "class": "SixShop\\Core\\Plugin"
  46. }
  47. }