composer.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. },
  46. "require-dev": {
  47. "symfony/var-dumper": "^4.2",
  48. "topthink/think-trace": "^1.0"
  49. },
  50. "autoload": {
  51. "psr-4": {
  52. "app\\": "app"
  53. },
  54. "psr-0": {
  55. "": "extend/"
  56. }
  57. },
  58. "config": {
  59. "preferred-install": "dist",
  60. "secure-http": false
  61. },
  62. "scripts": {
  63. "post-autoload-dump": [
  64. "@php think service:discover",
  65. "@php think vendor:publish"
  66. ]
  67. }
  68. }