0
0

composer.json 1011 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "topthink/think",
  3. "description": "the new thinkphp framework",
  4. "type": "project",
  5. "keywords": [
  6. "framework",
  7. "thinkphp",
  8. "ORM"
  9. ],
  10. "homepage": "http://thinkphp.cn/",
  11. "license": "Apache-2.0",
  12. "authors": [
  13. {
  14. "name": "liu21st",
  15. "email": "liu21st@gmail.com"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=7.1",
  20. "topthink/framework": "5.1.*",
  21. "workerman/gatewayclient": "^3.0",
  22. "jpush/jpush": "^3.6",
  23. "topthink/think-helper": "1.0.*",
  24. "phpoffice/phpspreadsheet": "^1.16",
  25. "phpoffice/phpword": "^0.17.0",
  26. "topthink/think-image": "^1.0",
  27. "overtrue/wechat": "~4.0",
  28. "topthink/think-queue": "v2.*",
  29. "yunwuxin/think-cron": "v2"
  30. },
  31. "autoload": {
  32. "psr-4": {
  33. "app\\": "application"
  34. }
  35. },
  36. "extra": {
  37. "think-path": "thinkphp"
  38. },
  39. "config": {
  40. "preferred-install": "dist"
  41. }
  42. }