mirror of
https://github.com/ledccn/IYUUPlus.git
synced 2025-05-21 18:48:57 +00:00
74 lines
1.7 KiB
JSON
74 lines
1.7 KiB
JSON
{
|
|
"name": "workerman/webman",
|
|
"type": "library",
|
|
"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.4.7",
|
|
"monolog/monolog": "^2.0",
|
|
"webman/console": "^1.2.12",
|
|
"vlucas/phpdotenv": "5.1.0",
|
|
"rhilip/bencode": "^2.1",
|
|
"workerman/crontab": "^1.0",
|
|
"curl/curl": "^2.3",
|
|
"ext-posix": "*",
|
|
"ext-pcntl": "*",
|
|
"ext-json": "*",
|
|
"ext-mbstring": "*",
|
|
"ext-curl": "*",
|
|
"ext-dom": "*",
|
|
"ledccn/bittorrentclient": "dev-master",
|
|
"webman/event": "^1.0",
|
|
"ext-simplexml": "*"
|
|
},
|
|
"suggest": {
|
|
"ext-event": "For better performance. "
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"": "./",
|
|
"IYUU\\": "src/"
|
|
},
|
|
"files": [
|
|
"./support/helpers.php",
|
|
"./app/helpers.php",
|
|
"./init.php"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"post-autoload-dump": [
|
|
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
|
],
|
|
"post-package-install": [
|
|
"support\\Plugin::install"
|
|
],
|
|
"post-package-update": [
|
|
"support\\Plugin::install"
|
|
],
|
|
"pre-package-uninstall": [
|
|
"support\\Plugin::uninstall"
|
|
]
|
|
}
|
|
}
|