console.php 962 B

1234567891011121314151617181920212223242526
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 控制台配置
  4. // +----------------------------------------------------------------------
  5. use core\dict\DictLoader;
  6. $data = [
  7. // 指令定义
  8. 'commands' => [
  9. 'addon:install' => 'app\command\Addon\Install',
  10. 'addon:uninstall' => 'app\command\Addon\Uninstall',
  11. 'menu:refresh' => 'app\command\Menu',
  12. //消息队列 自定义命令
  13. 'queue:work' => 'app\command\queue\Queue',
  14. 'queue:restart' => 'app\command\queue\Queue',
  15. 'queue:listen' => 'app\command\queue\Queue',
  16. //计划任务 自定义命令
  17. 'cron:schedule' => 'app\command\schedule\Schedule',
  18. //workerman的启动停止和重启
  19. 'workerman' => 'app\command\workerman\Workerman',
  20. //重置管理员密码
  21. 'reset:password' => 'app\command\Resetpassword'
  22. ],
  23. ];
  24. return (new DictLoader("Console"))->load($data);