PHPackages                             artmin96/filament-password-less - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. artmin96/filament-password-less

ActiveLibrary[Authentication &amp; Authorization](/categories/authentication)

artmin96/filament-password-less
===============================

Password-less for Filament

1.0.3(2y ago)333.2k↑33.3%5[2 PRs](https://github.com/ArtMin96/filament-password-less/pulls)MITPHPPHP ^8.0|^8.1

Since Jul 25Pushed 2y ago1 watchersCompare

[ Source](https://github.com/ArtMin96/filament-password-less)[ Packagist](https://packagist.org/packages/artmin96/filament-password-less)[ Docs](https://github.com/artmin96/filament-passwordless)[ GitHub Sponsors](https://github.com/ArtMin96)[ RSS](/packages/artmin96-filament-password-less/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (4)Dependencies (13)Versions (7)Used By (0)

[![Filament Password-less cover art](./art/filament-password-less.png)](./art/filament-password-less.png)

Password-less login for Filament
================================

[](#password-less-login-for-filament)

[![Latest Version on Packagist](https://camo.githubusercontent.com/65bda0982aeedf67ad942f57acc511e37e8b9acb0427190c826b44a10bea9696/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6172746d696e39362f66696c616d656e742d70617373776f72642d6c6573732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/artmin96/filament-password-less)[![GitHub Tests Action Status](https://camo.githubusercontent.com/66162af587b48cbfe1a583fbfe13a1b0cc55a2600163b137bc5447a8720bacdb/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f6172746d696e39362f66696c616d656e742d70617373776f72642d6c6573732f72756e2d74657374733f6c6162656c3d7465737473)](https://github.com/artmin96/filament-password-less/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/a1e11c61863ddeba3cf98bb52bac31e771e2bd53d5e6112c51d3a8e428f21737/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f6172746d696e39362f66696c616d656e742d70617373776f72642d6c6573732f436865636b253230262532306669782532307374796c696e673f6c6162656c3d636f64652532307374796c65)](https://github.com/artmin96/filament-password-less/actions?query=workflow%3A%22Check+%26+fix+styling%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/d4b201e598bbe355ea191532ec9e46075408021eb7f4b64dd79059b376b4c743/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6172746d696e39362f66696c616d656e742d70617373776f72642d6c6573732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/artmin96/filament-password-less)

Password-less authentication is the process of verifying a software user’s identity with something other than a password.

Screenshots
-----------

[](#screenshots)

[![Screenshot of Login](./art/login.png)](./art/login.png)[![Screenshot of Passphrase expired](./art/passphrase-expired.png)](./art/passphrase-expired.png)[![Screenshot of Passphrase sent](./art/confirm-passphrase-sent.png)](./art/confirm-passphrase-sent.png)[![Screenshot of Passphrase re-sent](./art/confirm-passphrase-re-sent.png)](./art/confirm-passphrase-re-sent.png)

Installation
------------

[](#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
-----

[](#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
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](https://github.com/ArtMin96/.github/blob/main/CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Arthur Minasyan](https://github.com/ArtMin96)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

35

—

LowBetter than 80% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity32

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 81% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~89 days

Total

5

Last Release

1030d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/477c7f16e7301036e026f9374ec9f2b9f6b396f563e87d556a78d9810cbfbb68?d=identicon)[ArtMin96](/maintainers/ArtMin96)

---

Top Contributors

[![ArtMin96](https://avatars.githubusercontent.com/u/29732308?v=4)](https://github.com/ArtMin96 "ArtMin96 (17 commits)")[![nicolasbaud](https://avatars.githubusercontent.com/u/63586531?v=4)](https://github.com/nicolasbaud "nicolasbaud (2 commits)")[![sh4msi](https://avatars.githubusercontent.com/u/6229984?v=4)](https://github.com/sh4msi "sh4msi (2 commits)")

---

Tags

authenticationfilamentlaravelpasswordlesslaravelArtMin96filament-passwordless

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/artmin96-filament-password-less/health.svg)

```
[![Health](https://phpackages.com/badges/artmin96-filament-password-less/health.svg)](https://phpackages.com/packages/artmin96-filament-password-less)
```

###  Alternatives

[spatie/laravel-permission

Permission handling for Laravel 12 and up

12.9k89.8M1.0k](/packages/spatie-laravel-permission)[bezhansalleh/filament-shield

Filament support for `spatie/laravel-permission`.

2.8k2.9M88](/packages/bezhansalleh-filament-shield)[jeffgreco13/filament-breezy

A custom package for Filament with login flow, profile and teams support.

1.0k1.7M41](/packages/jeffgreco13-filament-breezy)[dutchcodingcompany/filament-socialite

Social login for Filament through Laravel Socialite

213914.9k9](/packages/dutchcodingcompany-filament-socialite)[spatie/laravel-login-link

Quickly login to your local environment

4381.2M1](/packages/spatie-laravel-login-link)[ryangjchandler/laravel-cloudflare-turnstile

A simple package to help integrate Cloudflare Turnstile.

438896.6k2](/packages/ryangjchandler-laravel-cloudflare-turnstile)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
