composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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-ide-helper": "^2.0",
  31. "topthink/think-migration": "^3.1.1",
  32. "topthink/think-multi-app": "^1.1.1",
  33. "topthink/think-queue": "^3.0.12",
  34. "topthink/think-view": "^2.0.5",
  35. "topthink/think-worker": "^5.0.2",
  36. "topthink/think-cors": "^1.0.2",
  37. "opis/closure": "^4.3.1",
  38. "workerman/crontab": "^1.0.7"
  39. },
  40. "extra": {
  41. "think": {
  42. "services": [
  43. "SixShop\\Core\\Service\\CoreService"
  44. ]
  45. },
  46. "class": "SixShop\\Core\\Plugin"
  47. }
  48. }