composer.json 723 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "yuege/think-addons",
  3. "license": "mit",
  4. "authors": [
  5. {
  6. "name": "yue909",
  7. "email": "994927909@qq.com"
  8. }
  9. ],
  10. "autoload": {
  11. "psr-4": {
  12. "think\\": "src/"
  13. },
  14. "files": [
  15. "src/helper.php"
  16. ]
  17. },
  18. "extra": {
  19. "think": {
  20. "services": [
  21. "think\\addons\\Service"
  22. ]
  23. }
  24. },
  25. "require": {
  26. "php": ">=7.1.0",
  27. "topthink/framework": "^6.0",
  28. "topthink/think-view": "^1.0",
  29. "topthink/think-helper": "^3.0.0"
  30. },
  31. "scripts" : {
  32. "post-install-cmd": [
  33. "php think addons:config"
  34. ]
  35. }
  36. }