composer.json 1.9 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. "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-zip": "*",
  29. "ext-pdo": "*",
  30. "ext-curl": "*",
  31. "ext-bcmath": "*",
  32. "ext-mbstring": "*",
  33. "ext-swoole": "^4.4.0",
  34. "topthink/framework": "^6.0.0",
  35. "topthink/think-orm": "^2.0",
  36. "topthink/think-swoole": "^3.0.8",
  37. "firebase/php-jwt": "^5.0",
  38. "overtrue/wechat": "^3.3",
  39. "xaboy/form-builder": "^2.0.15",
  40. "phpoffice/phpexcel": "^1.8",
  41. "topthink/think-queue": "^3.0",
  42. "topthink/think-image": "^1.0",
  43. "aliyuncs/oss-sdk-php": "^2.3",
  44. "qcloud/cos-sdk-v5": "^1.3",
  45. "qiniu/php-sdk": "^7.2",
  46. "gregwar/captcha": "^1.1",
  47. "guzzle/guzzle": "~3.7",
  48. "endroid/qr-code": "^3.8",
  49. "phpoffice/phpspreadsheet": "^1.14",
  50. "riverslei/payment": "^5.1",
  51. "lizhichao/word": "^2.1",
  52. "joypack/tencent-map": "^1.0"
  53. },
  54. "require-dev": {
  55. "symfony/var-dumper": "^4.2",
  56. "topthink/think-trace":"^1.0"
  57. },
  58. "autoload": {
  59. "psr-4": {
  60. "app\\": "app",
  61. "crmeb\\": "crmeb"
  62. },
  63. "psr-0": {
  64. "": "extend/"
  65. }
  66. },
  67. "config": {
  68. "preferred-install": "dist"
  69. },
  70. "scripts": {
  71. "post-autoload-dump": [
  72. "@php think service:discover",
  73. "@php think vendor:publish"
  74. ]
  75. }
  76. }