jakubhanak/laravel-additional-command

This package is abandoned and no longer maintained. No replacement package was suggested.

Additional artisan command to Laravel framework

1.0.1 2018-05-04 13:07 UTC

This package is not auto-updated.

Last update: 2020-08-26 21:23:58 UTC


README

This package add artisan command to generate combinations of strings pairs without repetition

Installation

In your terminal:

composer require jakubhanak/laravel-additional-command

If you are on Laravel 5.4 (no need for Laravel 5.5 and higher), register the service provider to your config/app.php file:

'providers' => [
    ...
    Hanak\ArtisanCommand\ArtisanCommandServiceProvider::class,
];

Usage

string:combine

This command accept array of strings to the input attribute and result is combinations of strings in pairs without repetition.

php artisan string:combine {strings}

Example of usage.

php artisan string:combine one two three
php artisan string:combine one,two,three

Licence

Open-sourced software licensed under the MIT license.