composer.json 1.8 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. "ext-redis": "*",
  25. "topthink/think-view": "^1.0",
  26. "symfony/var-dumper": "^4.2",
  27. "overtrue/wechat": "^3.3",
  28. "topthink/think-captcha": "^3.0",
  29. "topthink/think-image": "^1.0",
  30. "xaboy/form-builder": "^1.2",
  31. "firebase/php-jwt": "^5.0",
  32. "phpoffice/phpexcel": "^1.8",
  33. "aliyuncs/oss-sdk-php": "^2.3",
  34. "qcloud/cos-sdk-v5": "^1.3",
  35. "qiniu/php-sdk": "^7.2",
  36. "workerman/workerman": "^3.5",
  37. "workerman/channel": "^1.0",
  38. "topthink/think-queue": "^3.0",
  39. "spatie/macroable": "^1.0",
  40. "dh2y/think-qrcode": "^2.0",
  41. "topthink/think-multi-app": "^1.0",
  42. "topthink/think-template": "^2.0",
  43. "alibabacloud/dysmsapi": "^1.8",
  44. "alipaysdk/easysdk": "^2.2",
  45. "pda/pheanstalk": "^4.0",
  46. "robthree/twofactorauth": "^1.8",
  47. "yurunsoft/yurun-oauth-login": "^3.0",
  48. "yurunsoft/pay-sdk": "^3.1",
  49. "wenstudioasia/zinc-php": "@dev"
  50. },
  51. "autoload": {
  52. "psr-4": {
  53. "app\\": "app",
  54. "crmeb\\": "crmeb",
  55. "tw\\": "tw",
  56. "tests\\": "tests"
  57. },
  58. "psr-0": {
  59. "": "extend/"
  60. }
  61. },
  62. "config": {
  63. "preferred-install": "dist"
  64. },
  65. "scripts": {
  66. "post-autoload-dump": [
  67. "@php think service:discover",
  68. "@php think vendor:publish"
  69. ]
  70. },
  71. "repositories": {
  72. "packagist": {
  73. "type": "composer",
  74. "url": "https://mirrors.aliyun.com/composer/"
  75. }
  76. },
  77. "require-dev": {
  78. "phpunit/phpunit": "^8.5.21"
  79. }
  80. }