composer.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "workerman/webman",
  3. "type": "project",
  4. "keywords": [
  5. "high performance",
  6. "http service"
  7. ],
  8. "homepage": "http://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": "http://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": "http://wenda.workerman.net/",
  23. "wiki": "http://workerman.net/doc/webman",
  24. "source": "https://github.com/walkor/webman"
  25. },
  26. "require": {
  27. "php": ">=7.2",
  28. "workerman/webman-framework": "^1.3.0",
  29. "monolog/monolog": "^2.0",
  30. "illuminate/database": "^8.83",
  31. "illuminate/pagination": "^8.83",
  32. "illuminate/events": "^8.83",
  33. "robmorgan/phinx": "^0.12.10",
  34. "illuminate/redis": "^8.83",
  35. "symfony/cache": "^5.4",
  36. "webman/console": "^1.0",
  37. "webman/redis-queue": "^1.1",
  38. "symfony/translation": "^5.4",
  39. "workerman/crontab": "^1.0"
  40. },
  41. "suggest": {
  42. "ext-event": "For better performance. "
  43. },
  44. "autoload": {
  45. "psr-4": {
  46. "": "./",
  47. "App\\": "./app"
  48. },
  49. "files": [
  50. "./support/helpers.php"
  51. ]
  52. },
  53. "scripts": {
  54. "post-package-install": [
  55. "support\\Plugin::install"
  56. ],
  57. "post-package-update": [
  58. "support\\Plugin::install"
  59. ],
  60. "pre-package-uninstall": [
  61. "support\\Plugin::uninstall"
  62. ]
  63. },
  64. "require-dev": {
  65. "phpunit/phpunit": "^9.5"
  66. }
  67. }