PHPackages                             slimani/filament-quick-login - 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. slimani/filament-quick-login

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

slimani/filament-quick-login
============================

A quick login plugin for Filament login page.

0.3.1(1mo ago)035MITPHPPHP ^8.3CI passing

Since May 1Pushed 1mo agoCompare

[ Source](https://github.com/slimani-dev/filament-quick-login)[ Packagist](https://packagist.org/packages/slimani/filament-quick-login)[ RSS](/packages/slimani-filament-quick-login/feed)WikiDiscussions main Synced 1w ago

READMEChangelog (4)Dependencies (10)Versions (5)Used By (0)

Filament Quick Login
====================

[](#filament-quick-login)

[![GitHub Workflow Status](https://camo.githubusercontent.com/9f4754ae46baffc020bed20e4957732780bed0086ee1afba1f9aefee3c114dad/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f736c696d616e692d6465762f66696c616d656e742d717569636b2d6c6f67696e2f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/slimani-dev/filament-quick-login/actions/workflows/run-tests.yml)[![GitHub Workflow Status](https://camo.githubusercontent.com/9216fd688a3d868dd30d8e3563df6d9896cb5f4fefca811225fea76fe3e83b4b/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f736c696d616e692d6465762f66696c616d656e742d717569636b2d6c6f67696e2f7068707374616e2e796d6c3f6272616e63683d6d61696e266c6162656c3d7068707374616e267374796c653d666c61742d737175617265)](https://github.com/slimani-dev/filament-quick-login/actions/workflows/phpstan.yml)[![GitHub Workflow Status](https://camo.githubusercontent.com/1c414d6d4cafa0a4291c36818d1c1b5f848fd12c54930d6e8746af1d7070829c/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f736c696d616e692d6465762f66696c616d656e742d717569636b2d6c6f67696e2f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/slimani-dev/filament-quick-login/actions/workflows/fix-php-code-style-issues.yml)[![Total Downloads](https://camo.githubusercontent.com/99d866f8545cf153cfacbe912cbb497709eb06b6baa36c31e5864a876bfb8010/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f736c696d616e692f66696c616d656e742d717569636b2d6c6f67696e2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/slimani/filament-quick-login)[![License](https://camo.githubusercontent.com/eb3bd4c96d299463fdfd5ec932d2d46b6ec29c72c77c2c59f8bc393a3877e774/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f736c696d616e692f66696c616d656e742d717569636b2d6c6f67696e2e7376673f7374796c653d666c61742d737175617265)](https://github.com/slimani-dev/filament-quick-login/blob/main/LICENSE)

A quick login plugin for Filament login page. It allows you to quickly log in as predefined users, perfect for development and testing environments.

Features
--------

[](#features)

- **Quick Login Buttons**: Adds buttons to the login page to log in instantly.
- **Customizable Users**: Define which users are available for quick login.
- **Environment Aware**: Easily enable or disable the plugin based on your application environment.
- **Model Support**: Works with any Eloquent user model.

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

[](#installation)

You can install the package via composer:

```
composer require slimani/filament-quick-login
```

Usage
-----

[](#usage)

### Registering the Plugin

[](#registering-the-plugin)

Register the plugin in your Panel Provider:

```
use Slimani\QuickLogin\QuickLoginPlugin;

public function panel(Panel $panel): Panel
{
    return $panel
        ->plugin(QuickLoginPlugin::make());
}
```

### Customizing the Plugin

[](#customizing-the-plugin)

You can customize the plugin's behavior using the following methods:

```
QuickLoginPlugin::make()
    ->enable(app()->environment('local')) // Only enable in local environment
    ->userModel(\App\Models\Admin::class) // Custom user model
    ->users([
        'admin@example.com',
        'user@example.com',
    ]) // Predefined users by email
```

You can also pass a Closure or a Collection to the `users()` method:

```
QuickLoginPlugin::make()
    ->users(fn () => \App\Models\User::all())
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

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

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

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

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

[](#security-vulnerabilities)

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

Credits
-------

[](#credits)

- [Mohamed Slimani](https://github.com/slimani-dev)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

40

—

FairBetter than 86% of packages

Maintenance94

Actively maintained with recent releases

Popularity11

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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 ~2 days

Total

4

Last Release

32d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/889517e68d00e2c3709f76b1b944493e4303ff205c6a836108fb8dae6eb50cb6?d=identicon)[slimani](/maintainers/slimani)

---

Top Contributors

[![slimani-dev](https://avatars.githubusercontent.com/u/25089144?v=4)](https://github.com/slimani-dev "slimani-dev (8 commits)")

---

Tags

laravelimpersonatefilamentquick-login

###  Code Quality

TestsPest

Static AnalysisPHPStan

### Embed Badge

![Health badge](/badges/slimani-filament-quick-login/health.svg)

```
[![Health](https://phpackages.com/badges/slimani-filament-quick-login/health.svg)](https://phpackages.com/packages/slimani-filament-quick-login)
```

###  Alternatives

[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3913.7k](/packages/rawilk-profile-filament-plugin)[bezhansalleh/filament-shield

Filament support for `spatie/laravel-permission`.

2.8k3.5M115](/packages/bezhansalleh-filament-shield)[stephenjude/filament-two-factor-authentication

Filament Two Factor Authentication: Google 2FA + Passkey Authentication

84192.9k7](/packages/stephenjude-filament-two-factor-authentication)[marcelweidum/filament-passkeys

Use passkeys in your filamentphp app

6643.3k](/packages/marcelweidum-filament-passkeys)[stephenjude/filament-jetstream

A Laravel starter kit built with Filament inspired by Jetstream.

17758.9k2](/packages/stephenjude-filament-jetstream)[chiiya/filament-access-control

Admin user, role and permission management for Laravel Filament

21851.1k](/packages/chiiya-filament-access-control)

PHPackages © 2026

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