hilovska / pairs
There is no license information available for the latest version (1.2) of this package.
Elaboration an assignment for a job offer
1.2
2018-06-07 12:50 UTC
Requires
- php: ^7.0
This package is not auto-updated.
Last update: 2025-06-16 09:56:04 UTC
README
Installation
- Install the package to your Laravel project:
composer require hilovska/pairs
Usage
In root directory of your Laravel project run command
php artisan pairs:print {args}
If you want print combination pairs with only unique args (i.e. removing identical arguments), add option -U
Example without -U option
php artisan pairs:print a b b
will return:
a b
a b
b b
Example with -U option
php artisan pairs:print a b b -U
will return:
a b