composer.json 1.9 KB

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