composer.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. "topthink/think-template": "^3.0",
  31. "webman/think-orm": "^2.1",
  32. "webman/think-cache": "^2.1",
  33. "webman/redis": "^2.1",
  34. "illuminate/events": "^12.38",
  35. "webman/redis-queue": "^2.1",
  36. "webman/rate-limiter": "^1.1",
  37. "symfony/translation": "^7.3",
  38. "intervention/image": "^3.11",
  39. "webman/event": "^1.0",
  40. "vlucas/phpdotenv": "^5.6",
  41. "workerman/crontab": "^1.0",
  42. "phpoffice/phpspreadsheet": "^5.2",
  43. "webman/console": "^2.1",
  44. "yzh52521/easyhttp": "^1.1",
  45. "xiaosongshu/elasticsearch": "^2.0",
  46. "kkokk/poster": "^3.0",
  47. "linfly/annotation": "1.x",
  48. "hhink/webman-sms": "^1.0",
  49. "tinywan/captcha": "^0.0.4",
  50. "shopwwi/webman-auth": "^2.0",
  51. "tinywan/storage": "^1.1",
  52. "aliyuncs/oss-sdk-php": "^2.7",
  53. "qcloud/cos-sdk-v5": "^2.6",
  54. "topthink/think-validate": "^3.0"
  55. },
  56. "suggest": {
  57. "ext-event": "For better performance. "
  58. },
  59. "autoload": {
  60. "psr-4": {
  61. "": "./",
  62. "app\\": "./app",
  63. "App\\": "./app",
  64. "app\\View\\Components\\": "./app/view/components"
  65. }
  66. },
  67. "scripts": {
  68. "post-package-install": [
  69. "support\\Plugin::install"
  70. ],
  71. "post-package-update": [
  72. "support\\Plugin::install"
  73. ],
  74. "pre-package-uninstall": [
  75. "support\\Plugin::uninstall"
  76. ]
  77. },
  78. "minimum-stability": "dev",
  79. "prefer-stable": true
  80. }