IYUUPlus/composer.json

74 lines
1.7 KiB
JSON
Raw Normal View History

2021-02-02 07:48:07 +00:00
{
"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",
2022-10-03 03:03:11 +00:00
"workerman/webman-framework": "^1.4.7",
2021-02-02 07:48:07 +00:00
"monolog/monolog": "^2.0",
2022-10-03 03:03:11 +00:00
"webman/console": "^1.2.12",
2021-02-02 07:48:07 +00:00
"vlucas/phpdotenv": "5.1.0",
"rhilip/bencode": "^2.1",
2021-02-02 07:48:07 +00:00
"workerman/crontab": "^1.0",
"curl/curl": "^2.3",
"ext-posix": "*",
"ext-pcntl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-curl": "*",
"ext-dom": "*",
2022-10-03 03:03:11 +00:00
"ledccn/bittorrentclient": "dev-master",
"webman/event": "^1.0",
"ext-simplexml": "*"
2021-02-02 07:48:07 +00:00
},
"suggest": {
"ext-event": "For better performance. "
},
"autoload": {
"psr-4": {
2022-10-03 03:03:11 +00:00
"": "./",
2021-02-02 07:48:07 +00:00
"IYUU\\": "src/"
},
"files": [
2022-10-03 03:03:11 +00:00
"./support/helpers.php",
2022-10-03 14:12:21 +00:00
"./app/helpers.php",
"./init.php"
2021-02-02 07:48:07 +00:00
]
},
"scripts": {
"post-autoload-dump": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
2022-10-03 03:03:11 +00:00
],
"post-package-install": [
"support\\Plugin::install"
],
"post-package-update": [
"support\\Plugin::install"
],
"pre-package-uninstall": [
"support\\Plugin::uninstall"
2021-02-02 07:48:07 +00:00
]
}
}