bradyrenting / filament-passwordless
Passwordless authentication for Filament
Fund package maintenance!
bradyrenting
Installs: 3 965
Dependents: 0
Suggesters: 0
Security: 0
Stars: 21
Watchers: 3
Forks: 11
Open Issues: 2
Requires
- php: ^8.0
- filament/filament: ^3.2
- illuminate/contracts: ^9.0|^10.0|^11.0
- spatie/laravel-package-tools: ^1.14
Requires (Dev)
- filament/support: ^3.0
- filament/upgrade: ^3.2
- laravel/pint: ^1.0
- nunomaduro/collision: ^6.0|^7.0|^8.1
- nunomaduro/larastan: ^2.0
- orchestra/testbench: ^7.22|^8.0|^9.0
- pestphp/pest: ^3.0
- pestphp/pest-plugin-laravel: ^3.0
- pestphp/pest-plugin-livewire: ^3.0
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- spatie/laravel-ray: ^1.26
This package is auto-updated.
Last update: 2025-03-07 22:39:04 UTC
README
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
Register the plugin in your Filament panel provider (the default filename is app/Providers/Filament/AdminPanelProvider.php
):
use BradyRenting\FilamentPasswordless\FilamentPasswordlessPlugin; // ... return $panel ->plugin(FilamentPasswordlessPlugin::make()) // ...
Note that you can remove any existing call to ->login()
in the panel's configuration because it will be provided by this plugin.
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 for more information.