webman
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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.14",
  29. "monolog/monolog": "^2.0",
  30. "firebase/php-jwt": "^6.3",
  31. "illuminate/redis": "^8.83",
  32. "illuminate/events": "^8.83",
  33. "topthink/think-validate": "^2.0",
  34. "psr/container": "1.1.1",
  35. "illuminate/database": "^8.83",
  36. "illuminate/pagination": "^8.83",
  37. "symfony/var-dumper": "^5.4",
  38. "webman/think-orm": "^1.0"
  39. },
  40. "suggest": {
  41. "ext-event": "For better performance. "
  42. },
  43. "autoload": {
  44. "psr-4": {
  45. "": "./",
  46. "App\\": "./app"
  47. },
  48. "files": [
  49. "./support/helpers.php"
  50. ]
  51. },
  52. "scripts": {
  53. "post-package-install": [
  54. "support\\Plugin::install"
  55. ],
  56. "post-package-update": [
  57. "support\\Plugin::install"
  58. ],
  59. "pre-package-uninstall": [
  60. "support\\Plugin::uninstall"
  61. ]
  62. }
  63. }