18

我一直在关注http://laravel.com/docs/5.0/commands并能够在 Laravel 5 中创建 artisan 命令。但是,如何创建 artisan 命令并将其打包到包中?

4

2 回答 2

46

$this->commands()您可以并且应该使用以下方法在服务提供者中注册包命令register()

namespace Vendor\Package;

class MyServiceProvider extends ServiceProvider {

    protected $commands = [
        'Vendor\Package\Commands\MyCommand',
        'Vendor\Package\Commands\FooCommand',
        'Vendor\Package\Commands\BarCommand',
    ];

    public function register(){
        $this->commands($this->commands);
    }
}
于 2015-02-13T07:47:57.267 回答
2

在 laravel 5.6 中这很容易。

类FooCommand,

<?php

namespace Vendor\Package\Commands;

use Illuminate\Console\Command;

class FooCommand extends Command {

    protected $signature = 'foo:method';

    protected $description = 'Command description';

    public function __construct() {
        parent::__construct();
    }

    public function handle() {
        echo 'foo';
    }

}

这是包的服务提供者。(只需将 $this->commands() 部分添加到启动功能)。

<?php
namespace Vendor\Package;

use Illuminate\Events\Dispatcher;
use Illuminate\Support\ServiceProvider;

class MyServiceProvider extends ServiceProvider {

    public function boot(\Illuminate\Routing\Router $router) {
        $this->commands([
            \Vendor\Package\Commands\FooCommand ::class,
        ]);
    }
}

现在我们可以像这样调用命令

php 工匠 foo: 方法

这将从命令句柄方法中回显“foo”。重要的部分是在包服务提供者的引导功能中给出正确的命令文件命名空间。

于 2018-05-31T16:53:37.053 回答