composer.json 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. },
  59. "autoload": {
  60. "psr-4": {
  61. "app\\": "app",
  62. "crmeb\\": "crmeb"
  63. },
  64. "psr-0": {
  65. "": "extend/"
  66. },
  67. "files": [
  68. "app/helpers.php"
  69. ]
  70. },
  71. "config": {
  72. "preferred-install": "dist",
  73. "allow-plugins": {
  74. "easywechat-composer/easywechat-composer": false,
  75. "yurunsoft/composer-include-files": false,
  76. "yurunsoft/guzzle-swoole": false
  77. }
  78. },
  79. "scripts": {
  80. "post-autoload-dump": [
  81. "@php think service:discover",
  82. "@php think vendor:publish"
  83. ]
  84. },
  85. "repositories": {
  86. "packagist": {
  87. "type": "composer",
  88. "url": "https://mirrors.aliyun.com/composer/"
  89. }
  90. }
  91. }