Password-less authentication is the process of verifying a software user’s identity with something other than a password.
You can install the package via composer:
composer require artmin96/filament-password-less
Update the config/filament.php to point to the PasswordLess Login::class:
'auth' => [
'guard' => env('FILAMENT_AUTH_GUARD', 'web'),
'pages' => [
'login' => \ArtMin96\FilamentPasswordLess\Http\Livewire\Auth\Login::class,
],
],
You can publish the config file with:
php artisan vendor:publish --tag="filament-password-less-config"
This is the contents of the published config file:
return [
/**
* Magic link
*
* Maybe you want to log in with a temporary generated link.
* If yes, set it to true.
*/
'using_magic_link' => false,
/**
* Rate limit count
*/
'rate_limit_count' => 5,
/**
* Passphrase count
*
* Passphrase is a combination of 3 or 4 words separated by hyphens.
*/
'passphrase_count' => 3,
/**
* Passphrase expiry (minutes)
*/
'passphrase_expiry' => 15,
/**
* User model
*/
'user_model' => \App\Models\User::class,
/**
* Login confirmation page component
*
* If you want to change something, place your component here.
*/
'confirm_passphrase_component' => \ArtMin96\FilamentPasswordLess\Http\Livewire\Auth\Confirm::class,
];
Optionally, you can publish the views using
php artisan vendor:publish --tag="filament-password-less-views"
Add the ArtMin96\FilamentPasswordLess\Traits\PasswordLessLogin
trait to your User
model(s):
use Illuminate\Foundation\Auth\User as Authenticatable;
use ArtMin96\FilamentPasswordLess\Traits\PasswordLessLogin;
class User extends Authenticatable
{
use PasswordLessLogin;
// ...
}
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.