composer.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. {
  2. "name": "workerman/webman",
  3. "type": "project",
  4. "keywords": [
  5. "high performance",
  6. "http service"
  7. ],
  8. "homepage": "https://www.workerman.net",
  9. "license": "MIT",
  10. "description": "High performance HTTP Service Framework.",
  11. "authors": [
  12. {
  13. "name": "walkor",
  14. "email": "walkor@workerman.net",
  15. "homepage": "https://www.workerman.net",
  16. "role": "Developer"
  17. }
  18. ],
  19. "support": {
  20. "email": "walkor@workerman.net",
  21. "issues": "https://github.com/walkor/webman/issues",
  22. "forum": "https://wenda.workerman.net/",
  23. "wiki": "https://workerman.net/doc/webman",
  24. "source": "https://github.com/walkor/webman"
  25. },
  26. "require": {
  27. "php": ">=8.1",
  28. "workerman/webman-framework": "^2.1",
  29. "monolog/monolog": "^2.0",
  30. "webman/console": "^2.2",
  31. "webman/think-orm": "^2.1",
  32. "webman/redis": "^2.1",
  33. "illuminate/events": "^12.64",
  34. "webman/validation": "^2.2",
  35. "shopwwi/webman-auth": "^2.0",
  36. "tinywan/storage": "^1.1",
  37. "aliyuncs/oss-sdk-php": "^2.7",
  38. "qcloud/cos-sdk-v5": "^2.6",
  39. "webman/think-cache": "^2.1",
  40. "webman/redis-queue": "^2.1",
  41. "webman/event": "^1.0",
  42. "yzh52521/easyhttp": "^1.1",
  43. "linfly/annotation": "^2.1",
  44. "vlucas/phpdotenv": "^5.6",
  45. "workerman/crontab": "^1.0",
  46. "phpoffice/phpspreadsheet": "^5.9",
  47. "symfony/translation": "^7.4",
  48. "php-di/php-di": "^7.0",
  49. "jaeger/querylist": "^4.4",
  50. "overtrue/pinyin": "^6.0",
  51. "tinywan/captcha": "^0.0.4"
  52. },
  53. "suggest": {
  54. "ext-event": "For better performance. "
  55. },
  56. "autoload": {
  57. "psr-4": {
  58. "": "./",
  59. "app\\": "./app",
  60. "App\\": "./app",
  61. "app\\View\\Components\\": "./app/view/components"
  62. }
  63. },
  64. "scripts": {
  65. "post-package-install": [
  66. "support\\Plugin::install"
  67. ],
  68. "post-package-update": [
  69. "support\\Plugin::install"
  70. ],
  71. "pre-package-uninstall": [
  72. "support\\Plugin::uninstall"
  73. ],
  74. "post-create-project-cmd": [
  75. "support\\Setup::run"
  76. ],
  77. "setup-webman": [
  78. "support\\Setup::run"
  79. ]
  80. },
  81. "minimum-stability": "dev",
  82. "prefer-stable": true
  83. }