2025-08-07 20:21:47 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
|
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
// | Copyright (c) 2006-2016 http://thinkphp.cn All rights reserved.
|
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
// | Author: yunwuxin <448901948@qq.com>
|
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
'app\admin\command\Crud',
|
|
|
|
|
'app\admin\command\Menu',
|
|
|
|
|
'app\admin\command\Install',
|
|
|
|
|
'app\admin\command\Min',
|
|
|
|
|
'app\admin\command\Addon',
|
|
|
|
|
'app\admin\command\Api',
|
2025-12-30 16:11:14 +08:00
|
|
|
//分表使用
|
|
|
|
|
'gift:migration' => 'app\common\command\GiftMigration',
|
|
|
|
|
'process:gift_queue' => 'app\common\command\ProcessGiftQueue',
|
|
|
|
|
'queue:monitor' => 'app\common\command\QueueMonitor',
|
2026-01-08 20:35:37 +08:00
|
|
|
'migrate:money_log' => 'app\common\command\MigrateMoneyLog',
|
2026-01-13 20:27:18 +08:00
|
|
|
'emergency:gift_queue' => 'app\common\command\EmergencyGiftQueue',
|
2025-08-07 20:21:47 +08:00
|
|
|
];
|