composer.json 1.8 KB

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