composer.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. "saithink/saiadmin": "^5.0",
  31. "webman/console": "^2.1"
  32. },
  33. "suggest": {
  34. "ext-event": "For better performance. "
  35. },
  36. "autoload": {
  37. "psr-4": {
  38. "": "./",
  39. "app\\": "./app",
  40. "App\\": "./app",
  41. "app\\View\\Components\\": "./app/view/components"
  42. }
  43. },
  44. "scripts": {
  45. "post-package-install": [
  46. "support\\Plugin::install"
  47. ],
  48. "post-package-update": [
  49. "support\\Plugin::install"
  50. ],
  51. "pre-package-uninstall": [
  52. "support\\Plugin::uninstall"
  53. ]
  54. },
  55. "minimum-stability": "dev",
  56. "prefer-stable": true
  57. }