62 lines
1.4 KiB
JSON
62 lines
1.4 KiB
JSON
{
|
|
"name": "workerman/webman",
|
|
"type": "project",
|
|
"keywords": [
|
|
"high performance",
|
|
"http service"
|
|
],
|
|
"homepage": "https://www.workerman.net",
|
|
"license": "MIT",
|
|
"description": "High performance HTTP Service Framework.",
|
|
"authors": [
|
|
{
|
|
"name": "walkor",
|
|
"email": "walkor@workerman.net",
|
|
"homepage": "https://www.workerman.net",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"support": {
|
|
"email": "walkor@workerman.net",
|
|
"issues": "https://github.com/walkor/webman/issues",
|
|
"forum": "https://wenda.workerman.net/",
|
|
"wiki": "https://workerman.net/doc/webman",
|
|
"source": "https://github.com/walkor/webman"
|
|
},
|
|
"require": {
|
|
"php": ">=7.2",
|
|
"workerman/webman-framework": "^1.5.0",
|
|
"monolog/monolog": "^2.0",
|
|
"illuminate/database": "^8.83",
|
|
"illuminate/pagination": "^8.83",
|
|
"illuminate/events": "^8.83",
|
|
"symfony/var-dumper": "^5.4",
|
|
"nesbot/carbon": "^2.72"
|
|
},
|
|
"suggest": {
|
|
"ext-event": "For better performance. "
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"": "./",
|
|
"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"
|
|
]
|
|
}
|
|
}
|