mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-03-18 05:04:51 +08:00
change daemon command from system to Process::kill add master_pid for motd information add option --preview delete server_event_handler_class and use process go-cqhttp-down.sh script add arm64 support add ./zhamao support change build-runtime.sh to install-runtime.sh add option --disable-safe-exit adjust some Console output set start script using /bin/sh for supporting auto searching php and framework
57 lines
1.6 KiB
JSON
57 lines
1.6 KiB
JSON
{
|
|
"name": "zhamao/framework",
|
|
"description": "High performance chat robot and web server development framework",
|
|
"minimum-stability": "stable",
|
|
"license": "Apache-2.0",
|
|
"extra": {
|
|
"exclude_annotate": [
|
|
"src/ZM"
|
|
]
|
|
},
|
|
"authors": [
|
|
{
|
|
"name": "jerry",
|
|
"email": "admin@zhamao.me"
|
|
}
|
|
],
|
|
"prefer-stable": true,
|
|
"bin": [
|
|
"bin/start",
|
|
"bin/phpunit-swoole"
|
|
],
|
|
"require": {
|
|
"php": ">=7.2",
|
|
"ext-json": "*",
|
|
"ext-posix": "*",
|
|
"ext-pcntl": "*",
|
|
"doctrine/annotations": "~1.12 || ~1.4.0",
|
|
"psy/psysh": "@stable",
|
|
"symfony/polyfill-ctype": "^1.19",
|
|
"symfony/polyfill-mbstring": "^1.19",
|
|
"symfony/console": "~5.0 || ~4.0 || ~3.0",
|
|
"symfony/routing": "~5.0 || ~4.0 || ~3.0",
|
|
"zhamao/console": "^1.0.10",
|
|
"zhamao/config": "^1.0",
|
|
"zhamao/request": "^1.1",
|
|
"zhamao/connection-manager": "^1.0"
|
|
},
|
|
"suggest": {
|
|
"ext-ctype": "Use C/C++ extension instead of polyfill will be more efficient",
|
|
"ext-mbstring": "Use C/C++ extension instead of polyfill will be more efficient",
|
|
"ext-pdo_mysql": "If you use mysql in framework, you will need this extension",
|
|
"ext-redis": "If you use Redis in framework, you will need this extension",
|
|
"league/climate": "Display columns and status in terminal"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"ZM\\": "src/ZM"
|
|
},
|
|
"files": [
|
|
"src/ZM/global_functions.php"
|
|
]
|
|
},
|
|
"require-dev": {
|
|
"swoole/ide-helper": "@dev"
|
|
}
|
|
}
|