31 lines
717 B
JSON
31 lines
717 B
JSON
|
|
{
|
||
|
|
"name": "game-worker/kiri-crontab",
|
||
|
|
"description": "基于 Redis + Swoole 的定时任务调度系统,支持定时执行、间隔重复、cron 表达式",
|
||
|
|
"type": "library",
|
||
|
|
"license": "MIT",
|
||
|
|
"authors": [
|
||
|
|
{
|
||
|
|
"name": "XiangLin",
|
||
|
|
"email": "as2252258@163.com"
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"require": {
|
||
|
|
"php": ">=8.5",
|
||
|
|
"ext-swoole": "*",
|
||
|
|
"ext-redis": "*",
|
||
|
|
"psr/log": "^1.0"
|
||
|
|
},
|
||
|
|
"suggest": {
|
||
|
|
"symfony/console": "如需集成 kiri-core 或使用命令行管理,建议安装 ^v8.0",
|
||
|
|
"game-worker/kiri-core": "如需集成到 kiri-core 框架,建议安装 kiri-core"
|
||
|
|
},
|
||
|
|
"autoload": {
|
||
|
|
"psr-4": {
|
||
|
|
"Kiri\\Crontab\\": "src/"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"bin": [
|
||
|
|
"bin/crontab"
|
||
|
|
]
|
||
|
|
}
|