composer.json 2.0 KB

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