You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.3 KiB
57 lines
1.3 KiB
{ |
|
"name": "workerman/webman", |
|
"type": "project", |
|
"keywords": [ |
|
"high performance", |
|
"http service" |
|
], |
|
"homepage": "http://www.workerman.net", |
|
"license": "MIT", |
|
"description": "High performance HTTP Service Framework.", |
|
"authors": [ |
|
{ |
|
"name": "walkor", |
|
"email": "walkor@workerman.net", |
|
"homepage": "http://www.workerman.net", |
|
"role": "Developer" |
|
} |
|
], |
|
"support": { |
|
"email": "walkor@workerman.net", |
|
"issues": "https://github.com/walkor/webman/issues", |
|
"forum": "http://wenda.workerman.net/", |
|
"wiki": "http://workerman.net/doc/webman", |
|
"source": "https://github.com/walkor/webman" |
|
}, |
|
"require": { |
|
"php": ">=7.2", |
|
"workerman/webman-framework": "^1.3.12", |
|
"monolog/monolog": "^2.0", |
|
"webman/action-hook": "^1.0", |
|
"webman/medoo": "^1.0", |
|
"phpmailer/phpmailer": "^6.6" |
|
}, |
|
"suggest": { |
|
"ext-event": "For better performance. " |
|
}, |
|
"autoload": { |
|
"psr-4": { |
|
"": "./", |
|
"App\\": "./app" |
|
}, |
|
"files": [ |
|
"./support/helpers.php" |
|
] |
|
}, |
|
"scripts": { |
|
"post-package-install": [ |
|
"support\\Plugin::install" |
|
], |
|
"post-package-update": [ |
|
"support\\Plugin::install" |
|
], |
|
"pre-package-uninstall": [ |
|
"support\\Plugin::uninstall" |
|
] |
|
} |
|
}
|
|
|