composer.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. "webman/console": "^1.0",
  31. "tinywan/jwt": "^1.3",
  32. "webman/action-hook": "^1.0",
  33. "topthink/think-validate": "^2.0",
  34. "hzdad/wbsms": "^1.0",
  35. "alibabacloud/client": "^1.5",
  36. "illuminate/database": "^5.6",
  37. "psr/container": "^1.1.1",
  38. "illuminate/redis": "5.8.36",
  39. "illuminate/events": "5.8.36",
  40. "tinywan/storage": "^0.3.3",
  41. "alibabacloud/facebody": "^1.8",
  42. "alibabacloud/facebody-20200910": "2.0.0",
  43. "tinywan/event": "^0.0.1",
  44. "webman/redis-queue": "^1.2",
  45. "gregwar/captcha": "1.*",
  46. "maatwebsite/excel": "^3.1",
  47. "phpoffice/phpexcel": "^1.8"
  48. },
  49. "suggest": {
  50. "ext-event": "For better performance. "
  51. },
  52. "autoload": {
  53. "psr-4": {
  54. "": "./",
  55. "App\\": "./app"
  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. "config": {
  73. "allow-plugins": {
  74. "kylekatarnls/update-helper": true
  75. }
  76. }
  77. }