nextgen-tech/ewus-laravel is a Laravel package.
It currently has 3 GitHub stars and 23 downloads on Packagist (latest version v1.0.0).
Install it with composer require nextgen-tech/ewus-laravel.
Discover more Laravel packages by nextgen-tech
or browse all Laravel packages to compare alternatives.
Last updated
This package is Laravel wrapper for nextgen-tech/ewus package.
| Version | Laravel | PHP | | ------- | ------- | ------ | | 1.x | >= 6.0 | >= 7.3 |
composer require nextgen-tech/ewus-laravel
Next run artisan command to set current password to eWUŚ:
php artisan ewus:password --init
eWUŚ requires password changes every two weeks. We recommend changing it more frequently to be sure it will not expire. To automate this process you can create schedule which will call artisan command:
// app/Console/Kernel.php
protected function schedule(Schedule $schedule)
{
// other schedules
$schedule->command('ewus:password --random')->weeklyOn(1, '00:00');
}