composer.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. "vlucas/phpdotenv": "^5.5",
  31. "illuminate/database": "^8.83",
  32. "illuminate/pagination": "^8.83",
  33. "illuminate/events": "^8.83",
  34. "symfony/var-dumper": "^5.4",
  35. "illuminate/redis": "^8.83",
  36. "topthink/think-validate": "^2.0",
  37. "symfony/translation": "^5.4",
  38. "tinywan/jwt": "^1.9.1",
  39. "tinywan/storage": "^1.0",
  40. "workerman/crontab": "^1.0",
  41. "overtrue/easy-sms": "^2.6",
  42. "hhink/webman-sms": "^1.0",
  43. "ldy/payment": "^3.6"
  44. },
  45. "suggest": {
  46. "ext-event": "For better performance. "
  47. },
  48. "autoload": {
  49. "psr-4": {
  50. "": "./",
  51. "app\\": "./app",
  52. "App\\": "./app",
  53. "app\\View\\Components\\": "./app/view/components"
  54. },
  55. "files": [
  56. "./support/helpers.php"
  57. ]
  58. },
  59. "scripts": {
  60. "post-package-install": [
  61. "support\\Plugin::install"
  62. ],
  63. "post-package-update": [
  64. "support\\Plugin::install"
  65. ],
  66. "pre-package-uninstall": [
  67. "support\\Plugin::uninstall"
  68. ]
  69. },
  70. "config": {
  71. "secure-http": false
  72. }
  73. }