hilovska / pairs
Elaboration an assignment for a job offer
Installs: 22
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/hilovska/pairs
Requires
- php: ^7.0
This package is not auto-updated.
Last update: 2025-12-15 12:16:24 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