HighSpeaker/composer.json

72 lines
1.8 KiB
JSON
Raw Normal View History

2022-12-17 18:08:00 +05:30
{
2022-12-19 17:19:52 +05:30
"name": "laysense/highspeaker",
2022-12-17 18:08:00 +05:30
"type": "project",
"keywords": [
2022-12-19 17:19:52 +05:30
"DNS server",
"DNS service",
"workerman"
2022-12-17 18:08:00 +05:30
],
2022-12-19 17:19:52 +05:30
"homepage": "https://laysense.com/dns",
"license": "AGPL-3.0-or-later",
"description": "A Dns server written by PHP based on Workerman",
2022-12-17 18:08:00 +05:30
"authors": [
{
2022-12-19 17:19:52 +05:30
"name": "Laysense",
"email": "enoch@laysense.com",
"homepage": "https://laysense.com",
2022-12-17 18:08:00 +05:30
"role": "Developer"
}
],
"support": {
2022-12-19 17:19:52 +05:30
"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/"
2022-12-17 18:08:00 +05:30
},
"require": {
2022-12-19 17:19:52 +05:30
"php": ">=8.0",
2022-12-17 18:08:00 +05:30
"workerman/webman-framework": "^1.4.3",
"monolog/monolog": "^2.0",
2022-12-19 17:19:52 +05:30
"webman/console": "^1.2",
2022-12-24 19:40:40 +05:30
"geoip2/geoip2": "~2.0",
"illuminate/redis": "^9.45",
"symfony/cache": "^6.0",
2024-02-04 21:30:23 +05:30
"illuminate/events": "^9.52",
2022-12-24 19:40:40 +05:30
"yzh52521/webman-throttle": "^1.0",
"workerman/validation": "^3.0",
"yzh52521/easyhttp": "^1.0",
2024-02-04 21:30:23 +05:30
"laysense/dns": "^0.1.0",
"illuminate/database": "^9.52",
"illuminate/pagination": "^9.52",
"symfony/var-dumper": "^6.0",
"robmorgan/phinx": "^0.14.0"
2022-12-17 18:08:00 +05:30
},
"suggest": {
"ext-event": "For better performance. "
},
"autoload": {
"psr-4": {
2022-12-18 15:44:03 +05:30
"Laysense\\Dns\\" : "vendor/laysense/dns/src",
2022-12-17 18:08:00 +05:30
"": "./",
"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"
]
}
}