composer.json 2.0 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": "^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. "alibabacloud/dysmsapi": "^1.8",
  43. "alipaysdk/easysdk": "^2.2",
  44. "pda/pheanstalk": "^4.0",
  45. "robthree/twofactorauth": "^1.8",
  46. "yurunsoft/yurun-oauth-login": "^3.0"
  47. },
  48. "autoload": {
  49. "psr-4": {
  50. "app\\": "app",
  51. "crmeb\\": "crmeb",
  52. "tw\\": "tw"
  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. "require-dev": {
  74. "phpunit/phpunit": "^8.5.21"
  75. }
  76. }