mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2025-12-13 19:22:48 +00:00
25 lines
874 B
PHP
25 lines
874 B
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 控制台配置
|
|
// +----------------------------------------------------------------------
|
|
use core\dict\DictLoader;
|
|
$data = [
|
|
// 指令定义
|
|
'commands' => [
|
|
'addon:install' => 'app\command\Addon\Install',
|
|
'addon:uninstall' => 'app\command\Addon\Uninstall',
|
|
'menu:refresh' => 'app\command\Menu',
|
|
//消息队列 自定义命令
|
|
'queue:work' => 'app\command\queue\Queue',
|
|
'queue:restart' => 'app\command\queue\Queue',
|
|
'queue:listen' => 'app\command\queue\Queue',
|
|
|
|
//计划任务 自定义命令
|
|
'cron:schedule' => 'app\command\schedule\Schedule',
|
|
|
|
//wokrerman的启动停止和重启
|
|
'workerman' => 'app\command\workerman\Workerman',
|
|
],
|
|
];
|
|
return (new DictLoader("Console"))->load($data);
|