You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.json 2.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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.4",
  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. },
  56. "autoload": {
  57. "psr-4": {
  58. "app\\": "app",
  59. "crmeb\\": "crmeb"
  60. },
  61. "psr-0": {
  62. "": "extend/"
  63. }
  64. },
  65. "config": {
  66. "preferred-install": "dist"
  67. },
  68. "scripts": {
  69. "post-autoload-dump": [
  70. "@php think service:discover",
  71. "@php think vendor:publish"
  72. ]
  73. },
  74. "repositories": {
  75. "packagist": {
  76. "type": "composer",
  77. "url": "https://mirrors.aliyun.com/composer/"
  78. }
  79. }
  80. }