composer.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. },
  52. "suggest": {
  53. "ext-event": "For better performance. "
  54. },
  55. "autoload": {
  56. "psr-4": {
  57. "": "./",
  58. "app\\": "./app",
  59. "App\\": "./app",
  60. "app\\View\\Components\\": "./app/view/components"
  61. }
  62. },
  63. "scripts": {
  64. "post-package-install": [
  65. "support\\Plugin::install"
  66. ],
  67. "post-package-update": [
  68. "support\\Plugin::install"
  69. ],
  70. "pre-package-uninstall": [
  71. "support\\Plugin::uninstall"
  72. ],
  73. "post-create-project-cmd": [
  74. "support\\Setup::run"
  75. ],
  76. "setup-webman": [
  77. "support\\Setup::run"
  78. ]
  79. },
  80. "minimum-stability": "dev",
  81. "prefer-stable": true
  82. }