composer.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "gougu/cms",
  3. "description": "the gougucms project",
  4. "type": "project",
  5. "keywords": [
  6. "dev",
  7. "oa",
  8. "cms"
  9. ],
  10. "homepage": "http://www.gougucms.com/",
  11. "license": "Apache-2.0",
  12. "authors": [
  13. {
  14. "name": "cms",
  15. "email": "hdm58@qq.com"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=7.4",
  20. "topthink/framework": "^6.1",
  21. "topthink/think-filesystem": "^2.0",
  22. "topthink/think-orm": "^2.0",
  23. "topthink/think-multi-app": "^1.0",
  24. "topthink/think-view": "^1.0",
  25. "topthink/think-image": "^1.0",
  26. "topthink/think-captcha": "^3.0",
  27. "phpmailer/phpmailer": "^6.6",
  28. "firebase/php-jwt": "^6.1",
  29. "symfony/var-exporter": "^5.4",
  30. "ezyang/htmlpurifier":"^4.1",
  31. "overtrue/wechat":"^5.0",
  32. "ext-json": "*",
  33. "qiniu/php-sdk": "^7.12",
  34. "death_satan/think-qiniu-storage": "^1.0"
  35. },
  36. "require-dev": {
  37. "symfony/var-dumper": "^4.2",
  38. "topthink/think-trace":"^1.0",
  39. "overtrue/wechat":"^5.0"
  40. },
  41. "autoload": {
  42. "psr-4": {
  43. "app\\": "app"
  44. },
  45. "psr-0": {
  46. "": "extend/"
  47. }
  48. },
  49. "config": {
  50. "preferred-install": "dist",
  51. "platform": {
  52. "php": "7.4.3"
  53. },
  54. "allow-plugins": {
  55. "easywechat-composer/easywechat-composer": true
  56. }
  57. },
  58. "scripts": {
  59. "post-autoload-dump": [
  60. "@php think service:discover",
  61. "@php think vendor:publish"
  62. ]
  63. }
  64. }