sven/laravel-chained-commands 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

sven/laravel-chained-commands

最新稳定版本:v1.0.0

Composer 安装命令:

composer require sven/laravel-chained-commands

包简介

Chain Laravel artisan commands together

README 文档

README

Latest Version on Packagist Total Downloads Software License Build Status StyleCI PhpStan

Note

I found this unfinished code on my computer. Figured I'd publish it in case anyone would find it useful. Don't expect a lot. I also won't be merging PRs or checking issues. You're on your own, kid.

Installation

You can install this package via Composer:

composer require sven/laravel-chained-commands

Registering the service provider

Next, add the ServiceProvider to your providers array in config/app.php:

'providers' => [
    ...
    Sven\LaravelChainedCommands\ServiceProvider::class,
];

If you would like to load this package in certain environments only, take a look at sven/env-providers.

Usage

Publish the configuration file:

php artisan vendor:publish --provider="Sven\\LaravelChainedCommands\\ServiceProvider"

You should now have a new file at config/chained-commands.php where you can define your command chains:

return [
    RootCommand::class => [
        FirstCommand::class => ['argument' => 'value'],
        SecondCommand::class => ['--option' => 'option-value', '--boolean-option' => false],
        ThirdCommand::class,
    ],
];

Note

Be wary of your command chains "going in circles", where commands A and B both call each other. If this happens, an exception will be thrown.

Contributing

All contributions (pull requests, issues and feature requests) are welcome. Make sure to read through the CONTRIBUTING.md first, though. See the contributors page for all contributors.

License

sven/laravel-chained-commands is licensed under the MIT License (MIT). Please see the license file for more information.

统计信息

  • 总下载量: 4
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-08-19