2026-06-28 17:06:12 +08:00
|
|
|
{
|
|
|
|
|
"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": "*",
|
2026-06-28 17:31:59 +08:00
|
|
|
"psr/log": "^1.0",
|
2026-07-01 17:03:59 +08:00
|
|
|
"psr/event-dispatcher": "^1.0",
|
|
|
|
|
"symfony/console": "^v8.0",
|
|
|
|
|
"game-worker/kiri-core": "^v1.0",
|
|
|
|
|
"game-worker/kiri-http-server": "^v1.0"
|
2026-06-28 17:06:12 +08:00
|
|
|
},
|
|
|
|
|
"autoload": {
|
|
|
|
|
"psr-4": {
|
|
|
|
|
"Kiri\\Crontab\\": "src/"
|
2026-06-28 17:31:59 +08:00
|
|
|
},
|
|
|
|
|
"files": [
|
|
|
|
|
"src/functions.php"
|
|
|
|
|
]
|
2026-06-28 17:06:12 +08:00
|
|
|
},
|
|
|
|
|
"bin": [
|
|
|
|
|
"bin/crontab"
|
|
|
|
|
]
|
|
|
|
|
}
|