composer.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. "tinywan/captcha": "^0.0.4",
  58. "webman/push": "^1.1"
  59. },
  60. "suggest": {
  61. "ext-event": "For better performance. "
  62. },
  63. "autoload": {
  64. "psr-4": {
  65. "": "./",
  66. "app\\": "./app",
  67. "App\\": "./app",
  68. "app\\View\\Components\\": "./app/view/components"
  69. }
  70. },
  71. "scripts": {
  72. "post-package-install": [
  73. "support\\Plugin::install"
  74. ],
  75. "post-package-update": [
  76. "support\\Plugin::install"
  77. ],
  78. "pre-package-uninstall": [
  79. "support\\Plugin::uninstall"
  80. ],
  81. "post-create-project-cmd": [
  82. "support\\Setup::run"
  83. ],
  84. "setup-webman": [
  85. "support\\Setup::run"
  86. ]
  87. },
  88. "minimum-stability": "dev",
  89. "prefer-stable": true
  90. }