我开发了一些自定义工匠命令,以便于我的包使用。是否可以将artisan命令包含在包中以便于部署?如果可以,怎么样?
感谢。
答案 0 :(得分:13)
在包结构中设置命令:
<?php namespace App\Artisan;
use Illuminate\Console\Command;
class MyCommand extends Command {
protected $name = 'mypackage:mycommand';
protected $description = 'Nice description of my command.';
public function fire()
{
/// do stuff
}
}
您可以在您的服务提供商包中
<?php namespace App;
use Illuminate\Support\ServiceProvider;
use App\Artisan\MyCommand;
class MyServiceProvider extends ServiceProvider {
public function register()
{
$this->registerMyCommand();
$this->commands('mycommand');
}
private function registerMyCommand()
{
$this->app['mycommand'] = $this->app->share(function($app)
{
return new MyCommand;
});
}
}
诀窍在行
$this->commands('mycommand');
告诉Laravel将您的命令添加到可用的工匠列表中。