zeyen / laravel-console
Webman plugin zeyen/laravel-console
Requires
- php: >=7.4
- illuminate/console: >=8
- illuminate/container: >=8
- illuminate/events: >=8
Requires (Dev)
- phpunit/phpunit: ^9
- webman/console: ^1.2
- workerman/webman-framework: ^1.5
This package is not auto-updated.
Last update: 2025-03-15 06:34:20 UTC
README
基于webman-tech/laravel-console 的 Laravel illuminate/console for webman 插件修改而来,为了兼容webman高版本出现artisan命令出现的 The command defined in "XXXXXX" cannot have an empty name. 错误修改更正版本。感谢webman-tech 大神的原始版本,如若大神有机会看到此项目,请有时间进行更新下,此版本只是进行了简单的更新,如有错误,请多多包涵。
为什么会有这个扩展
官方的 webman/console 很便捷也很实用,而且很贴近 webman 框架,这是事实
以下几个原因是本扩展诞生的原因:
- webman/console 是基于 symfony/console 的,比较底层,illuminate/console 同样也是,但是在其上层封装了一层,使用起来更加方便
- 给用惯了 laravel 的人一个熟悉的环境(尤其是在建一个 command 时,laravel 的 command 使用 signature 定义参数更加方便)
- 现在有很多实用的第三方扩展是基于 laravel,可能迁移其中的组件时能够比较方便,但是其中的 command 无法直接使用,因此本扩展可以让这些扩展的 command 直接使用
介绍
所有方法和配置与 laravel 几乎一模一样,因此使用方式完全参考 Laravel文档 即可
注意:只是用法一致,但不带有任何 laravel 框架自带的命令
安装
composer require zeyen/laravel-console
如果需要支持 webman/console 的命令,直接安装即可
composer require webman/console
配置
配置文件:config/plugin/zeyen/laravel-console/artisan.php
命令扫描
默认自动扫描 app\command
下的命令(同 webman/console 的逻辑)
如果安装了 webman/console
,会自动扫描其命令(完全兼容)
如果需要自定义命令扫描目录,可以在 commands_path
中添加,如:
return [
'commands_path' => [
app_path() . '/myCommands' => 'app\myCommands',
],
];
自定义命令
当需要添加来自第三方包,或者没有放在扫描目录中的命令时,可以在 commands
中添加,如:
return [
'commands' => [
\App\Commands\MyCommand::class,
],
];
使用
- 新建命令
namespace app\command;
use Illuminate\Console\Command;
class SendEmails extends Command
{
protected $signature = 'mail:send {userId}';
protected $description = 'Send a marketing email to a user';
public function handle(Mailer $mailer): void
{
$mailer->send(User::find($this->argument('userId')));
}
}
- 注册命令
由于上面的命令是放在 app\command
目录下的,因此不需要注册,
如果是放在其他目录下的,需要在配置中添加
- 调用
命令行调用
php artisan mail:send 1
业务中调用(比如控制器)
use \zeyen\LaravelConsole\Facades\Artisan;
Artisan::call('mail:send', ['userId' => 1]);