composer.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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": ">=7.2",
  28. "workerman/webman-framework": "^1.5.0",
  29. "monolog/monolog": "^2.0"
  30. },
  31. "suggest": {
  32. "ext-event": "For better performance. "
  33. },
  34. "autoload": {
  35. "psr-4": {
  36. "": "./",
  37. "app\\": "./app",
  38. "App\\": "./app",
  39. "app\\View\\Components\\": "./app/view/components"
  40. },
  41. "files": [
  42. "./support/helpers.php"
  43. ]
  44. },
  45. "scripts": {
  46. "post-package-install": [
  47. "support\\Plugin::install"
  48. ],
  49. "post-package-update": [
  50. "support\\Plugin::install"
  51. ],
  52. "pre-package-uninstall": [
  53. "support\\Plugin::uninstall"
  54. ]
  55. }
  56. }