composer.json 2.1 KB

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