composer.json 2.2 KB

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.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. "phpmailer/phpmailer": "^6.7",
  53. "stripe/stripe-php": "^10.12"
  54. },
  55. "autoload": {
  56. "psr-4": {
  57. "app\\": "app",
  58. "crmeb\\": "crmeb"
  59. },
  60. "psr-0": {
  61. "": "extend/"
  62. }
  63. },
  64. "config": {
  65. "preferred-install": "dist",
  66. "platform-check": false
  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. }