bradyrenting/filament-passwordless

Passwordless authentication for Filament

1.1.1 2023-07-03 03:46 UTC

README

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

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

License

The MIT License (MIT). Please see License File for more information.