composer.json 910 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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.4",
  24. "composer-plugin-api": "^2.0",
  25. "composer/composer": "^2.9.2",
  26. "topthink/framework": "^8.1.3",
  27. "topthink/think-orm": "^4.0.50",
  28. "topthink/think-queue": "^3.0.12",
  29. "topthink/think-view": "^2.0.5",
  30. "topthink/think-worker": "^5.0.2",
  31. "topthink/think-cors": "^1.0.2",
  32. "opis/closure": "^4.4.0",
  33. "workerman/crontab": "^1.0.7"
  34. },
  35. "extra": {
  36. "think": {
  37. "services": [
  38. "SixShop\\Core\\Service\\CoreService"
  39. ]
  40. },
  41. "class": "SixShop\\Core\\Plugin"
  42. }
  43. }