composer.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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": "^1.2",
  30. "firebase/php-jwt": "^5.0",
  31. "phpoffice/phpexcel": "^1.8",
  32. "aliyuncs/oss-sdk-php": "^2.3",
  33. "qcloud/cos-sdk-v5": "^1.3",
  34. "qiniu/php-sdk": "^7.2",
  35. "workerman/workerman": "^3.5",
  36. "workerman/channel": "^1.0",
  37. "topthink/think-queue": "^3.0",
  38. "spatie/macroable": "^1.0",
  39. "dh2y/think-qrcode": "^2.0",
  40. "topthink/think-multi-app": "^1.0",
  41. "topthink/think-template": "^2.0",
  42. "overtrue/pinyin": "^4.0",
  43. "ext-pdo": "*"
  44. },
  45. "autoload": {
  46. "psr-4": {
  47. "app\\": "app",
  48. "crmeb\\": "crmeb"
  49. },
  50. "psr-0": {
  51. "": "extend/"
  52. }
  53. },
  54. "config": {
  55. "preferred-install": "dist"
  56. },
  57. "scripts": {
  58. "post-autoload-dump": [
  59. "@php think service:discover",
  60. "@php think vendor:publish"
  61. ]
  62. },
  63. "repositories": {
  64. "packagist": {
  65. "type": "composer",
  66. "url": "https://mirrors.aliyun.com/composer/"
  67. }
  68. }
  69. }