composer.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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.0.0",
  20. "topthink/framework": "5.1.*",
  21. "topthink/think-captcha": "2.0.*",
  22. "thans/tp-jwt-auth": "^1.0",
  23. "casbin/think-adapter": "^1.0",
  24. "lettered/support": "^1.0",
  25. "overtrue/wechat": "~4.0",
  26. "ext-bcmath": "*",
  27. "endroid/qrcode": "3.5.*",
  28. "phpoffice/phpspreadsheet": "1.12.*",
  29. "workerman/phpsocket.io": "^1.1"
  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. "allow-plugins": {
  42. "easywechat-composer/easywechat-composer": true,
  43. "topthink/think-installer": true
  44. }
  45. }
  46. }