Laravel 9 – 12
PHP 8.0+
Low commit activity in last 18 months
Passwordless authentication for Filament
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

filament/upgrade
^3.2
^6.0|^7.0|^8.1
^7.22|^8.0|^9.0
pestphp/pest-plugin-livewire
^3.0
phpstan/extension-installer
^1.1
phpstan/phpstan-deprecation-rules
^1.0
phpstan/phpstan-phpunit
^1.0

Runtime

 Project Readme

Passwordless Authentication for Filament

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

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.