如何在插件中使用自定义命令?
protected static $pathRelation = array ( 'command' => 'app/command' );
在插件Install中 将命令复制到app/command中即可 简单快捷
谢谢
可以改下 /webman 文件
/webman
新增
foreach (config('plugin', []) as $firm => $projects) { foreach ($projects as $name => $project) { foreach ($project['command'] ?? [] as $command) { $cli->add(new $command); } } }
插件新增个配置文件 command.php
command.php
return [ \Foo\Admin\Command\CustomCommand::class, ];
提了个 pull request 给 webman/console
在插件Install中 将命令复制到app/command中即可 简单快捷
谢谢
可以改下
/webman
文件新增
插件新增个配置文件
command.php
提了个 pull request 给 webman/console
OK!