HighSpeaker/composer.json
2022-12-24 22:10:40 +08:00

70 lines
1.7 KiB
JSON

{
"name": "laysense/highspeaker",
"type": "project",
"keywords": [
"DNS server",
"DNS service",
"workerman"
],
"homepage": "https://laysense.com/dns",
"license": "AGPL-3.0-or-later",
"description": "A Dns server written by PHP based on Workerman",
"authors": [
{
"name": "Laysense",
"email": "enoch@laysense.com",
"homepage": "https://laysense.com",
"role": "Developer"
}
],
"support": {
"email": "enoch@laysense.com",
"issues": "https://git.laysense.com/enoch/HighSpeaker/issues",
"forum": "https://git.laysense.com/enoch/HighSpeaker/issues",
"wiki": "https://doc.laysense.com/web/#/5/23",
"source": "https://git.laysense.com/enoch/HighSpeaker/"
},
"require": {
"php": ">=8.0",
"workerman/webman-framework": "^1.4.3",
"monolog/monolog": "^2.0",
"webman/console": "^1.2",
"geoip2/geoip2": "~2.0",
"illuminate/redis": "^9.45",
"symfony/cache": "^6.0",
"illuminate/events": "^9.45",
"yzh52521/webman-throttle": "^1.0",
"workerman/validation": "^3.0",
"yzh52521/easyhttp": "^1.0"
},
"suggest": {
"ext-event": "For better performance. "
},
"autoload": {
"psr-4": {
"Laysense\\Dns\\" : "vendor/laysense/dns/src",
"": "./",
"app\\": "./app",
"App\\": "./app",
"app\\View\\Components\\": "./app/view/components"
},
"files": [
"./support/helpers.php"
]
},
"scripts": {
"post-package-install": [
"support\\Plugin::install"
],
"post-package-update": [
"support\\Plugin::install"
],
"pre-package-uninstall": [
"support\\Plugin::uninstall"
]
},
"require-dev": {
"webman-tech/debugbar": "^2.1"
}
}