智慧教务系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
924 B

<?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',
'testcommand'=>'app\command\TestCommand'
],
];
return (new DictLoader("Console"))->load($data);