composer.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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.0",
  28. "workerman/webman-framework": "^1.5.0",
  29. "monolog/monolog": "^2.0",
  30. "illuminate/database": "^11.14",
  31. "illuminate/pagination": "^11.14",
  32. "illuminate/events": "^11.14",
  33. "symfony/var-dumper": "^7.1",
  34. "illuminate/redis": "^11.14",
  35. "workerman/validation": "^3.1",
  36. "webman/captcha": "^1.0",
  37. "vlucas/phpdotenv": "^5.6",
  38. "workerman/crontab": "^1.0",
  39. "phpoffice/phpspreadsheet": "^2.1",
  40. "webman/console": "^1.2.24",
  41. "webman/admin": "^0.6.29",
  42. "hg/apidoc": "^5.2",
  43. "firebase/php-jwt": "^6.10",
  44. "giggsey/libphonenumber-for-php": "^8.13",
  45. "yzh52521/easyhttp": "^1.1"
  46. },
  47. "suggest": {
  48. "ext-event": "For better performance. "
  49. },
  50. "autoload": {
  51. "psr-4": {
  52. "": "./",
  53. "app\\": "./app",
  54. "App\\": "./app",
  55. "app\\View\\Components\\": "./app/view/components"
  56. },
  57. "files": [
  58. "./support/helpers.php"
  59. ]
  60. },
  61. "scripts": {
  62. "post-package-install": [
  63. "support\\Plugin::install"
  64. ],
  65. "post-package-update": [
  66. "support\\Plugin::install"
  67. ],
  68. "pre-package-uninstall": [
  69. "support\\Plugin::uninstall"
  70. ]
  71. },
  72. "require-dev": {
  73. "phpunit/phpunit": "v9.6.8"
  74. }
  75. }