composer.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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.1",
  28. "workerman/webman-framework": "^2.1",
  29. "monolog/monolog": "^2.0",
  30. "webman/console": "^2.2",
  31. "webman/database": "^2.1",
  32. "webman/think-orm": "^2.1",
  33. "illuminate/pagination": "^12.55",
  34. "illuminate/events": "^12.55",
  35. "symfony/var-dumper": "^7.4",
  36. "webman/redis": "^2.1",
  37. "webman/validation": "^2.2",
  38. "yzh52521/easyhttp": "^1.1",
  39. "webman/event": "^1.0",
  40. "phpoffice/phpspreadsheet": "^5.5",
  41. "workerman/crontab": "^1.0",
  42. "vlucas/phpdotenv": "^5.6",
  43. "webman/redis-queue": "^2.1",
  44. "webman/think-cache": "^2.1",
  45. "kkokk/poster": "^3.0",
  46. "isszz/webman-hashids": "^0.0.2",
  47. "linfly/annotation": "^2.1",
  48. "hhink/webman-sms": "^1.0",
  49. "hzdad/codecheck": "^1.0",
  50. "php-di/php-di": "^7.1",
  51. "shopwwi/webman-auth": "^2.0",
  52. "tinywan/storage": "^1.1",
  53. "aliyuncs/oss-sdk-php": "^2.7",
  54. "qcloud/cos-sdk-v5": "^2.6",
  55. "qiniu/php-sdk": "^7.14",
  56. "luckycmc/webman-province-city-area": "^1.0"
  57. },
  58. "suggest": {
  59. "ext-event": "For better performance. "
  60. },
  61. "autoload": {
  62. "psr-4": {
  63. "": "./",
  64. "app\\": "./app",
  65. "App\\": "./app",
  66. "app\\View\\Components\\": "./app/view/components"
  67. }
  68. },
  69. "scripts": {
  70. "post-package-install": [
  71. "support\\Plugin::install"
  72. ],
  73. "post-package-update": [
  74. "support\\Plugin::install"
  75. ],
  76. "pre-package-uninstall": [
  77. "support\\Plugin::uninstall"
  78. ],
  79. "post-create-project-cmd": [
  80. "support\\Setup::run"
  81. ],
  82. "setup-webman": [
  83. "support\\Setup::run"
  84. ]
  85. },
  86. "minimum-stability": "dev",
  87. "prefer-stable": true
  88. }