composer.json 1.1 KB

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