console.php 995 B

123456789101112131415161718192021222324252627
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 控制台配置
  4. // +----------------------------------------------------------------------
  5. return [
  6. // 指令定义
  7. 'commands' => [
  8. //自动同步路由权限
  9. 'menu' => 'app\command\updateMenu',
  10. //将所有商品加入到spu表
  11. 'spu' => 'app\command\updateSpu',
  12. //整理路由权限
  13. 'menu:format' => 'app\command\FormatMenuPath',
  14. //清除缓存素材
  15. 'clear:attachment' => 'app\command\ClearCacheAttachment',
  16. //版本更新
  17. 'version:update' => 'app\command\VersionUpdate',
  18. //清除所有 除配置相关之外的数据
  19. 'clear:merchant' => 'app\command\ClearMerchantData',
  20. //清除所有已删除的商户的商品相关数据
  21. 'clear:redundancy' => 'app\command\ClearRedundancy',
  22. //重制平台管理员的密码
  23. 'reset:password' => 'app\command\resetPassword',
  24. ],
  25. ];