mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-03-18 13:14:52 +08:00
add config: swoole.max_wait_time (default 5) add constant MAIN_WORKER add getExpireTS() for LightCache fix savePersistence() bug add zm_go() to prevent errors
53 lines
1.4 KiB
JSON
53 lines
1.4 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": "*",
|
|
"doctrine/annotations": "~1.10",
|
|
"psy/psysh": "@stable",
|
|
"symfony/polyfill-ctype": "^1.20",
|
|
"symfony/polyfill-mbstring": "^1.20",
|
|
"symfony/console": "^5.1",
|
|
"symfony/routing": "^5.1",
|
|
"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",
|
|
"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"
|
|
}
|
|
} |