artmin96 / filament-password-less
Password-less for Filament
Fund package maintenance!
ArtMin96
Installs: 1 853
Dependents: 0
Suggesters: 0
Security: 0
Stars: 32
Watchers: 1
Forks: 5
Open Issues: 2
Requires
- php: ^8.0|^8.1
- filament/filament: ^2.13
- illuminate/contracts: ^9.0|^10.0
- spatie/laravel-package-tools: ^1.14
Requires (Dev)
- laravel/pint: ^1.0
- nunomaduro/collision: ^6.0|^7.0
- nunomaduro/larastan: ^2.0
- orchestra/testbench: ^7.22|^8.0
- pestphp/pest: ^1.21
- pestphp/pest-plugin-laravel: ^1.1
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- phpunit/phpunit: ^9.5
README
Password-less login for Filament
Password-less authentication is the process of verifying a software user’s identity with something other than a password.
Screenshots
Installation
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"
Usage
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; // ... }
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
License
The MIT License (MIT). Please see License File for more information.