PHPackages                             wingsline/passwordlessauth - 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. wingsline/passwordlessauth

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

wingsline/passwordlessauth
==========================

Passwordless Authentication for Laravel

v1.0.1(6y ago)16[2 PRs](https://github.com/wingsline/laravel-passwordlessauth/pulls)MITPHP

Since Jun 23Pushed 3y ago1 watchersCompare

[ Source](https://github.com/wingsline/laravel-passwordlessauth)[ Packagist](https://packagist.org/packages/wingsline/passwordlessauth)[ Docs](https://github.com/wingsline/laravel-passwordlessauth)[ RSS](/packages/wingsline-passwordlessauth/feed)WikiDiscussions master Synced 3w ago

READMEChangelogDependencies (7)Versions (6)Used By (0)

PasswordlessAuth
================

[](#passwordlessauth)

[![Latest Version on Packagist](https://camo.githubusercontent.com/84fc2d20202fc670e3c7b356570aa2163409a5b1b538678c2f7f2cb45eead522/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f77696e67736c696e652f70617373776f72646c657373617574682e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/wingsline/passwordlessauth)[![Total Downloads](https://camo.githubusercontent.com/d5384b783548130294ddda602dd2317889127cf6acee32bdf22d921674b25191/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f77696e67736c696e652f70617373776f72646c657373617574682e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/wingsline/passwordlessauth)[![Build Status](https://camo.githubusercontent.com/67342d698e9da4e623d6279b4b074db2668ebea083dc2ed1823734d0d5d97e76/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f77696e67736c696e652f6c61726176656c2d70617373776f72646c657373617574682f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/wingsline/laravel-passwordlessauth)[![StyleCI](https://camo.githubusercontent.com/4d19fd24055854c1c795ca6e25108daa00d90cc3eb93348e29ec6aef1fb2e738/68747470733a2f2f7374796c6563692e696f2f7265706f732f3237343438313139362f736869656c64)](https://styleci.io/repos/274481196)

This package will enable passwordless authentication using temporary signed routes. Take a look at [contributing.md](contributing.md) to see a to do list.

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

[](#installation)

Create a new Laravel application with:

```
laravel new myapp --auth
```

Via Composer

```
$ composer require wingsline/passwordlessauth
```

Remove the `Auth::routes();` from the `routes/web.php` and replace it with:

```
use Wingsline\PasswordlessAuth\Facades\PasswordlessAuth;

PasswordlessAuth::routes();
```

Replace the following route names in the original views with the `passwordless.` prefix:

- login -&gt; passwordless.login
- register -&gt; passwordless.register
- logout -&gt; passwordless.logout
- verification.resend -&gt; passwordless.verification.resend

Replace the `auth` middleware in `app/Http/Kernel.php`:

```
protected $routeMiddleware = [
        'auth' => \Wingsline\PasswordlessAuth\Middleware\Authenticate::class,
    ]
```

Add the following method to the `User` model and make sure the model implements the `Illuminate\Contracts\Auth\MustVerifyEmail` interface:

```
use Wingsline\PasswordlessAuth\Notifications\VerifyEmail;

/**
 * Send the email verification notification.
 *
 * @return void
 */
public function sendEmailVerificationNotification()
{
    $this->notify(new VerifyEmail);
}
```

Change log
----------

[](#change-log)

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

Testing
-------

[](#testing)

```
$ composer test
```

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

[](#contributing)

Please see [contributing.md](contributing.md) for details and a todolist.

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Arpad Olasz](https://github.com/wingsline)
- [All Contributors](../../contributors)

License
-------

[](#license)

MIT. Please see the [license file](license.md) for more information.

###  Health Score

26

—

LowBetter than 41% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 90.5% 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 ~0 days

Total

2

Last Release

2200d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/294228?v=4)[Arpad Olasz](/maintainers/wingsline)[@wingsline](https://github.com/wingsline)

---

Top Contributors

[![wingsline](https://avatars.githubusercontent.com/u/294228?v=4)](https://github.com/wingsline "wingsline (19 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (2 commits)")

---

Tags

laravelPasswordlessAuth

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/wingsline-passwordlessauth/health.svg)

```
[![Health](https://phpackages.com/badges/wingsline-passwordlessauth/health.svg)](https://phpackages.com/packages/wingsline-passwordlessauth)
```

###  Alternatives

[directorytree/ldaprecord-laravel

LDAP Authentication &amp; Management for Laravel.

5752.3M18](/packages/directorytree-ldaprecord-laravel)[venturedrake/laravel-crm

A free open source CRM built as a package for laravel projects

43311.2k](/packages/venturedrake-laravel-crm)[sebastienheyd/boilerplate

Laravel Boilerplate based on AdminLTE 3 with blade components, user management, roles, permissions, logs viewer, ...

29420.1k3](/packages/sebastienheyd-boilerplate)[masterix21/laravel-licensing

Laravel licensing package with polymorphic assignment to any model, activation keys, expirations/renewals, and seat control via LicenseUsage. Supports offline verification with public-key–signed tokens, a CLI to generate/rotate/revoke keys, and an extensible architecture via config and contracts.

1563.0k4](/packages/masterix21-laravel-licensing)

PHPackages © 2026

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