filament-passwordless
filament-passwordless copied to clipboard
Passwordless authentication for Filament
Passwordless Authentication for Filament
Filament Passwordless is a package for Filament that allows users to login without a password.
Installation
You can install the package via composer:
composer require bradyrenting/filament-passwordless
You can publish the config file with:
php artisan vendor:publish --tag="filament-passwordless-config"
Optionally, you can publish the views using
php artisan vendor:publish --tag="filament-passwordless-views"
Usage
In your config/filament.php
config, replace the default Login page with \BradyRenting\FilamentPasswordless\Http\Livewire\Auth\Login::class
.
'auth' => [
'guard' => env('FILAMENT_AUTH_GUARD', 'web'),
'pages' => [
'login' => \BradyRenting\FilamentPasswordless\Http\Livewire\Auth\Login::class,
],
],
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
- Brady Renting
- All Contributors
License
The MIT License (MIT). Please see License File for more information.