composer.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. "name": "liu21st",
  14. "email": "liu21st@gmail.com"
  15. },
  16. {
  17. "name": "yunwuxin",
  18. "email": "448901948@qq.com"
  19. }
  20. ],
  21. "require": {
  22. "php": ">=7.1.0",
  23. "topthink/framework": "6.0.15",
  24. "topthink/think-orm": "^2.0",
  25. "jasny/sso": "^0.3.0",
  26. "xiaodi/think-pullword": "^1.0",
  27. "topthink/think-view": "^1.0",
  28. "aliyuncs/oss-sdk-php": "^2.3",
  29. "tcwei/imglazyload": "^1.3",
  30. "tcwei/imgsrc": "^2.0",
  31. "topthink/think-captcha": "^3.0",
  32. "alibabacloud/client": "^1.5",
  33. "xiaodi/think-pinyin": "^1.0",
  34. "workerman/workerman": "^4.0",
  35. "workerman/gateway-worker": "^3.0",
  36. "workerman/gatewayclient": "^3.0",
  37. "topthink/think-multi-app": "^1.0",
  38. "thans/thinkphp-filesystem-cloud": "^1.0",
  39. "topthink/think-queue": "^3.0",
  40. "yunwuxin/think-cron": "^3.0",
  41. "swiftmailer/swiftmailer": "^6.0",
  42. "thans/tp-jwt-auth": "^1.3",
  43. "singka/singka-sms": "^1.6",
  44. "topthink/think-api": "^1.0",
  45. "google/cloud-translate": "1.11",
  46. "rize/uri-template": "0.3.5",
  47. "php-ffmpeg/php-ffmpeg": "0.19"
  48. },
  49. "require-dev": {
  50. "symfony/var-dumper": "^4.2",
  51. "topthink/think-trace": "^1.0"
  52. },
  53. "autoload": {
  54. "psr-4": {
  55. "app\\": "app"
  56. },
  57. "psr-0": {
  58. "": "extend/"
  59. }
  60. },
  61. "config": {
  62. "preferred-install": "dist",
  63. "secure-http": false
  64. },
  65. "scripts": {
  66. "post-autoload-dump": [
  67. "@php think service:discover",
  68. "@php think vendor:publish"
  69. ]
  70. }
  71. }