composer.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "yue909/lemocms",
  3. "description": "一个基于最新的tp6(thinkphp)框架的极速后台开发框架",
  4. "type": "project",
  5. "keywords": [
  6. "Lemocms",
  7. "easywechat",
  8. "framework",
  9. "thinkphp",
  10. "ORM"
  11. ],
  12. "homepage": "https://www.lemocms.com",
  13. "license": "Apache-2.0",
  14. "authors": [
  15. {
  16. "name": "yue909",
  17. "email": "limingyue0312@gmail.com"
  18. }
  19. ],
  20. "require": {
  21. "php": ">=7.1.0",
  22. "topthink/framework": "6.0.*-dev",
  23. "topthink/think-orm": "2.0.*-dev",
  24. "topthink/think-view": "^1.0",
  25. "topthink/think-image": "^1.0",
  26. "topthink/think-queue": "^3.0",
  27. "topthink/think-captcha": "^3.0",
  28. "topthink/think-helper": "^3.1",
  29. "topthink/think-multi-app": "^1.0",
  30. "topthink/think-throttle": "^1.0",
  31. "overtrue/wechat": "^4.2",
  32. "ramsey/uuid": "^3.8",
  33. "yuege/think-addons": "^0.31",
  34. "topthink/think-worker": "^3.0",
  35. "endroid/qr-code": "^3.7",
  36. "php-ffmpeg/php-ffmpeg": "^0.14.0",
  37. "alibabacloud/client": "^1.5",
  38. "workerman/gateway-worker-for-win": "^3.0",
  39. "xaboy/form-builder": "^2.0.13",
  40. "aliyuncs/oss-sdk-php": "2.3.0",
  41. "phpmailer/phpmailer": "^6.1"
  42. },
  43. "require-dev": {
  44. "symfony/var-dumper": "^4.2"
  45. },
  46. "autoload": {
  47. "psr-4": {
  48. "app\\": "app"
  49. },
  50. "psr-0": {
  51. "": "extend/"
  52. }
  53. },
  54. "config": {
  55. "preferred-install": "dist"
  56. },
  57. "scripts": {
  58. "post-autoload-dump": [
  59. "@php think service:discover",
  60. "@php think vendor:publish"
  61. ]
  62. }
  63. }