composer.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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.3",
  20. "ext-json": "*",
  21. "ext-curl": "*",
  22. "ext-bcmath": "*",
  23. "ext-mbstring": "*",
  24. "topthink/think-view": "^1.0",
  25. "symfony/var-dumper":"^4.2",
  26. "overtrue/wechat": "^3.3",
  27. "topthink/think-captcha": "^3.0",
  28. "topthink/think-image": "^1.0",
  29. "xaboy/form-builder": "^1.2",
  30. "firebase/php-jwt": "^5.0",
  31. "phpoffice/phpexcel": "^1.8",
  32. "aliyuncs/oss-sdk-php": "^2.3",
  33. "qcloud/cos-sdk-v5": "^1.3",
  34. "qiniu/php-sdk": "^7.2",
  35. "workerman/workerman": "^3.5",
  36. "workerman/channel": "^1.0",
  37. "topthink/think-queue": "^3.0",
  38. "spatie/macroable": "^1.0",
  39. "dh2y/think-qrcode": "^2.0",
  40. "topthink/think-multi-app": "^1.0",
  41. "topthink/think-template": "^2.0",
  42. "overtrue/pinyin": "^4.0",
  43. "phpmailer/phpmailer": "^6.5",
  44. "mattvb91/trontrx": "^0.3.0",
  45. "fenguoz/tron-php": "^1.3",
  46. "ext-openssl": "*",
  47. "jialeo/payment": "^0.16.0",
  48. "alibabacloud/cloudauth-20190307": "1.0.5"
  49. },
  50. "autoload": {
  51. "psr-4": {
  52. "app\\": "app",
  53. "crmeb\\": "crmeb"
  54. },
  55. "psr-0": {
  56. "": "extend/"
  57. }
  58. },
  59. "config": {
  60. "preferred-install": "dist"
  61. },
  62. "scripts": {
  63. "post-autoload-dump": [
  64. "@php think service:discover",
  65. "@php think vendor:publish"
  66. ]
  67. },
  68. "repositories": {
  69. "packagist": {
  70. "type": "composer",
  71. "url": "https://mirrors.aliyun.com/composer/"
  72. }
  73. }
  74. }