composer.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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.0",
  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. "topthink/think-captcha": "~v3.0",
  27. "topthink/think-image": "^1.0",
  28. "xaboy/form-builder": "^2.0",
  29. "firebase/php-jwt": "^5.0",
  30. "aliyuncs/oss-sdk-php": "~v2.4.3",
  31. "qcloud/cos-sdk-v5": "~V2.0",
  32. "qiniu/php-sdk": "^7.2",
  33. "topthink/think-queue": "^3.0",
  34. "spatie/macroable": "^1.0",
  35. "dh2y/think-qrcode": "^2.0",
  36. "topthink/think-template": "^2.0",
  37. "phpoffice/phpspreadsheet": "^1.12",
  38. "godruoyi/php-snowflake": "^1.0",
  39. "qcloud_sts/qcloud-sts-sdk": "^3.0",
  40. "guzzlehttp/psr7": "^1.7",
  41. "guzzlehttp/guzzle": "6.5.5",
  42. "alipaysdk/easysdk": "2.0",
  43. "topthink/think-migration": "^3.0",
  44. "topthink/think-swoole": "~v4.0",
  45. "endroid/qr-code": "^4.0",
  46. "topthink/framework": "6.0.9",
  47. "joypack/tencent-map": "^1.0",
  48. "reasno/swoole-aliyunoss-addon": "^1.0",
  49. "xiaodi/think-pullword": "^1.2",
  50. "symfony/http-foundation": "~v5.4.3",
  51. "overtrue/socialite": "~v3.5.0",
  52. "overtrue/wechat": "~5.0",
  53. "league/flysystem": "~v1.1.9",
  54. "yurunsoft/guzzle-swoole": "^2.2",
  55. "fastknife/ajcaptcha": "^1.1",
  56. "alibabacloud/client": "^1.5",
  57. "async-aws/s3": "^1.14",
  58. "ext-openssl": "*",
  59. "alibabacloud/cloudauth-20190307": "2.3.0"
  60. },
  61. "autoload": {
  62. "psr-4": {
  63. "app\\": "app",
  64. "crmeb\\": "crmeb"
  65. },
  66. "psr-0": {
  67. "": "extend/"
  68. },
  69. "files": [
  70. "app/helpers.php"
  71. ]
  72. },
  73. "config": {
  74. "preferred-install": "dist",
  75. "allow-plugins": {
  76. "easywechat-composer/easywechat-composer": false,
  77. "yurunsoft/composer-include-files": false,
  78. "yurunsoft/guzzle-swoole": false
  79. }
  80. },
  81. "scripts": {
  82. "post-autoload-dump": [
  83. "@php think service:discover",
  84. "@php think vendor:publish"
  85. ]
  86. },
  87. "repositories": {
  88. "packagist": {
  89. "type": "composer",
  90. "url": "https://mirrors.aliyun.com/composer/"
  91. }
  92. }
  93. }