composer.json 1.8 KB

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