composer.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. "overtrue/wechat": "^3.3",
  27. "topthink/think-captcha": "^3.0",
  28. "topthink/think-image": "^1.0",
  29. "xaboy/form-builder": "2.0.17",
  30. "firebase/php-jwt": "^5.0",
  31. "aliyuncs/oss-sdk-php": "^2.3",
  32. "qcloud/cos-sdk-v5": "v1.3.5",
  33. "qiniu/php-sdk": "^7.2",
  34. "workerman/workerman": "^3.5",
  35. "workerman/channel": "^1.0",
  36. "topthink/think-queue": "^3.0",
  37. "spatie/macroable": "^1.0",
  38. "dh2y/think-qrcode": "^2.0",
  39. "topthink/think-multi-app": "^1.0",
  40. "topthink/think-template": "^2.0",
  41. "phpoffice/phpspreadsheet": "^1.12",
  42. "godruoyi/php-snowflake": "^1.0",
  43. "qcloud_sts/qcloud-sts-sdk": "^3.0",
  44. "guzzlehttp/psr7": "^1.7",
  45. "guzzlehttp/guzzle": "6.5.5",
  46. "alipaysdk/easysdk": "2.0",
  47. "lizhichao/word": "^2.1",
  48. "alibabacloud/dysmsapi-20170525": "2.0.16",
  49. "fastknife/ajcaptcha": "^1.1",
  50. "volcengine/volc-sdk-php": "^1.0",
  51. "workerman/crontab": "^1.0",
  52. "topthink/think-migration": "^3.0"
  53. },
  54. "autoload": {
  55. "psr-4": {
  56. "app\\": "app",
  57. "crmeb\\": "crmeb"
  58. },
  59. "psr-0": {
  60. "": "extend/"
  61. }
  62. },
  63. "config": {
  64. "preferred-install": "dist",
  65. "platform-check": false
  66. },
  67. "scripts": {
  68. "post-autoload-dump": [
  69. "@php think service:discover",
  70. "@php think vendor:publish"
  71. ]
  72. },
  73. "repositories": {
  74. "packagist": {
  75. "type": "composer",
  76. "url": "https://mirrors.aliyun.com/composer/"
  77. }
  78. }
  79. }