流明制造:命令

2022-08-30 13:51:18

我正在尝试通过命令行在我的Lumen安装中执行代码。在完整的Laravel中,我已经读到你可以使用命令通过“make:command”来实现这一点,但是Lumen似乎不支持这个命令。

是否无论如何都要启用此命令?如果做不到这一点,在Lumen中运行CLI代码的最佳方法是什么?

谢谢


答案 1

您可以在 Lumen 中使用 CLI,就像在 Laravel 中一样,但内置命令更少。要查看所有内置命令,请使用 Lumen 中的命令。artisanphp artisan

虽然 Lumen 中没有命令,但您可以创建自定义命令:make:command

  • 在文件夹内添加新的命令类,可以使用框架 serve 命令的示例类模板app/Console/Commands

  • 通过将创建的类添加到文件中的成员来注册自定义命令。$commandsapp/Console/Kernel.php

除了命令生成之外,在使用Lumen时,您可以使用Laravel文档来执行命令。


答案 2

下面是新命令的模板。您只需将其复制并粘贴到新文件中即可开始工作。我在流明5.7.0上测试了它

<?php

namespace App\Console\Commands;

use Illuminate\Console\Command;

class CommandName extends Command
{
    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'commandSignature';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Command description';

    /**
     * Create a new command instance.
     *
     * @return void
     */
    public function __construct()
    {
        parent::__construct();
    }

    /**
     * Execute the console command.
     *
     * @return mixed
     */
    public function handle()
    {

        $this->info('hello world.');
    }
}

然后在内核.php文件上注册它。

/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
   \App\Console\Commands\CommandName::class
];

推荐