composer.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "gougu/oa",
  3. "description": "the gouguoa project",
  4. "type": "project",
  5. "keywords": [
  6. "dev",
  7. "oa",
  8. "cms"
  9. ],
  10. "homepage": "http://www.gouguoa.com",
  11. "license": "Apache-2.0",
  12. "authors": [
  13. {
  14. "name": "oa",
  15. "email": "hdm58@qq.com"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=8.2",
  20. "ext-curl": "*",
  21. "ext-fileinfo": "*",
  22. "ext-openssl": "*",
  23. "ext-pdo": "*",
  24. "ext-zip": "*",
  25. "topthink/framework": "^8.1.2",
  26. "topthink/think-orm": "^4.0.5",
  27. "topthink/think-filesystem": "^3.0",
  28. "topthink/think-multi-app": "^1.0",
  29. "topthink/think-view": "^2.0",
  30. "topthink/think-captcha": "^3.0",
  31. "topthink/think-helper": "^3.1",
  32. "topthink/think-image": "^1.0.8",
  33. "overtrue/pinyin": "^5.2",
  34. "phpmailer/phpmailer": "^6.8",
  35. "firebase/php-jwt": "^7.0",
  36. "phpoffice/phpspreadsheet": "^1.2",
  37. "phpoffice/phpword": "^1.2",
  38. "mpdf/mpdf": "^8.1",
  39. "alibabacloud/dysmsapi-20170525":"^4.3"
  40. },
  41. "require-dev": {
  42. "symfony/var-dumper": "^6.0",
  43. "topthink/think-trace":"^1.6"
  44. },
  45. "autoload": {
  46. "psr-4": {
  47. "app\\": "app"
  48. },
  49. "psr-0": {
  50. "": "extend/"
  51. }
  52. },
  53. "config": {
  54. "preferred-install": "dist"
  55. },
  56. "scripts": {
  57. "post-autoload-dump": [
  58. "@php think service:discover",
  59. "@php think vendor:publish"
  60. ]
  61. },
  62. "repositories": {
  63. "packagist": {
  64. "type": "composer",
  65. "url": "https://mirrors.tencent.com/composer/"
  66. }
  67. }
  68. }