composer.json 2.6 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": "https://www.thinkphp.cn/",
  11. "license": "Apache-2.0",
  12. "authors": [
  13. {
  14. "name": "liu21st",
  15. "email": "liu21st@gmail.com"
  16. },
  17. {
  18. "name": "yunwuxin",
  19. "email": "448901948@qq.com"
  20. }
  21. ],
  22. "require": {
  23. "php": ">=8.0.0",
  24. "topthink/framework": "v8.0.3",
  25. "topthink/think-orm": "v3.0.14",
  26. "topthink/think-filesystem": "v2.0.2",
  27. "topthink/think-multi-app": "v1.0.16",
  28. "topthink/think-template": "v3.0.0",
  29. "topthink/think-view": "v2.0.0",
  30. "topthink/think-captcha": "v3.0.9",
  31. "topthink/think-image": "v1.0.7",
  32. "firebase/php-jwt": "v5.5.1",
  33. "spatie/macroable": "v1.0.1",
  34. "dh2y/think-qrcode": "v2.0",
  35. "dragonmantank/cron-expression": "v3.3.1",
  36. "phpoffice/phpspreadsheet": "v1.28.0",
  37. "qiniu/php-sdk": "v7.4.0",
  38. "qcloud/cos-sdk-v5": "v2.6.2",
  39. "aliyuncs/oss-sdk-php": "v2.6.0",
  40. "alibabacloud/client": "v1.5.32",
  41. "rmccue/requests": "v2.0.5",
  42. "ext-json": "*",
  43. "ext-curl": "*",
  44. "ext-bcmath": "*",
  45. "ext-mbstring": "*",
  46. "php-di/php-di": "v7.0.1",
  47. "guzzlehttp/guzzle": "7.5",
  48. "yansongda/pay": "v3.6.3",
  49. "symfony/psr-http-message-bridge": "v2.2.0",
  50. "fastknife/ajcaptcha": "v1.2.1",
  51. "kosinix/grafika": "dev-master",
  52. "nesbot/carbon": "2.66.0",
  53. "ext-zip": "*",
  54. "mjaschen/phpgeo": "4.2.0",
  55. "tencentcloud/sms": "^3.0",
  56. "w7corp/easywechat": "6.7.0",
  57. "workerman/workerman": "v4.1.15",
  58. "workerman/redis-queue": "v1.2.0",
  59. "workerman/crontab": "v1.0.6",
  60. "hyperf/pimple": "~2.2.0",
  61. "kkokk/poster": "2.3.2"
  62. },
  63. "require-dev": {
  64. "symfony/var-dumper": "v6.0.19",
  65. "topthink/think-trace": "v1.6"
  66. },
  67. "autoload": {
  68. "psr-4": {
  69. "addon\\": "addon",
  70. "app\\": "app",
  71. "core\\": "core"
  72. },
  73. "psr-0": {}
  74. },
  75. "config": {
  76. "preferred-install": "dist",
  77. "allow-plugins": {
  78. "easywechat-composer/easywechat-composer": true
  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. }