composer.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. "name": "yunwuxin",
  19. "email": "448901948@qq.com"
  20. }
  21. ],
  22. "require": {
  23. "php": ">=7.1.0",
  24. "ext-json": "*",
  25. "ext-openssl": "*",
  26. "ext-gd": "*",
  27. "ext-redis": "*",
  28. "ext-pdo": "*",
  29. "ext-curl": "*",
  30. "ext-bcmath": "*",
  31. "ext-mbstring": "*",
  32. "ext-swoole": "^4.4.0",
  33. "topthink/framework": "^6.0.0",
  34. "topthink/think-orm": "^2.0",
  35. "topthink/think-swoole": "^3.0",
  36. "firebase/php-jwt": "^5.0",
  37. "overtrue/wechat": "^3.3",
  38. "xaboy/form-builder": "^2.0.15",
  39. "phpoffice/phpexcel": "^1.8",
  40. "topthink/think-queue": "^3.0",
  41. "topthink/think-image": "^1.0",
  42. "aliyuncs/oss-sdk-php": "^2.3",
  43. "qcloud/cos-sdk-v5": "^1.3",
  44. "qiniu/php-sdk": "^7.2",
  45. "gregwar/captcha": "^1.1",
  46. "guzzle/guzzle": "~3.7",
  47. "endroid/qr-code": "^3.8",
  48. "phpoffice/phpspreadsheet": "^1.14",
  49. "phpseclib/phpseclib": "~3.0",
  50. "alibabacloud/client": "^1.5",
  51. "maniac/easemob-php": "^1.0"
  52. },
  53. "require-dev": {
  54. "symfony/var-dumper": "^4.2"
  55. },
  56. "autoload": {
  57. "psr-4": {
  58. "app\\": "app",
  59. "crmeb\\": "crmeb"
  60. },
  61. "psr-0": {
  62. "": "extend/"
  63. }
  64. },
  65. "config": {
  66. "preferred-install": "dist"
  67. },
  68. "scripts": {
  69. "post-autoload-dump": [
  70. "@php think service:discover",
  71. "@php think vendor:publish"
  72. ]
  73. }
  74. }