composer.json 1.9 KB

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