composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. "overtrue/pinyin": "4.0",
  31. "ezyang/htmlpurifier": "^4.17"
  32. },
  33. "autoload": {
  34. "psr-4": {
  35. "app\\": "application"
  36. }
  37. },
  38. "extra": {
  39. "think-path": "thinkphp"
  40. },
  41. "config": {
  42. "preferred-install": "dist",
  43. "allow-plugins": {
  44. "easywechat-composer/easywechat-composer": true,
  45. "topthink/think-installer": true
  46. }
  47. }
  48. }