PHPackages                             cyrildewit/laravel-silent-authentication - 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. cyrildewit/laravel-silent-authentication

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

cyrildewit/laravel-silent-authentication
========================================

Silent authentication methods for Laravel

v0.1.2(6y ago)3117MITPHPPHP ^7.1CI failing

Since Feb 9Pushed 6y ago1 watchersCompare

[ Source](https://github.com/cyrildewit/laravel-silent-authentication)[ Packagist](https://packagist.org/packages/cyrildewit/laravel-silent-authentication)[ Docs](https://github.com/cyrildewit/laravel-silent-authentication)[ RSS](/packages/cyrildewit-laravel-silent-authentication/feed)WikiDiscussions master Synced yesterday

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

Laravel Silent Authentication
=============================

[](#laravel-silent-authentication)

This Laravel &gt;= 5.5 package allows you to silently authenticate users.

Overview
--------

[](#overview)

I created this package for personal usage. It's based on insights from other open source packages and online blog posts.

Documentation
-------------

[](#documentation)

In this documentation, you will find some helpful information about the use of this Laravel package.

### Table of contents

[](#table-of-contents)

1. [Getting Started](#getting-started)
    - [Requirements](#requirements)
    - [Installation](#installation)
2. [Usage](#usage)
    - [Default setup](#default-setup)
    - [SilentAuthentication trait](#preparing-your-model)

Getting Started
---------------

[](#getting-started)

### Requirements

[](#requirements)

This package requires **PHP 7.1+** and **Laravel 5.5+**.

Lumen is not supported!

#### Version information

[](#version-information)

VersionIlluminateStatusPHP Version1.05.5 - 5.7Active support&gt;= 7.1.0### Installation

[](#installation)

First, you need to install the package via Composer:

```
composer require cyrildewit/laravel-silent-authentication
```

You can optionally publish the config file with:

```
php artisan vendor:publish --provider="CyrildeWit\LaravelSilentAuthentication\SilentAuthenticationServiceProvider" --tag="config"
```

#### Register service provider manually

[](#register-service-provider-manually)

If you prefer to register packages manually, you can add the following provider to your application's providers list.

```
// config/app.php

'providers' => [
    // ...
    CyrildeWit\LaravelSilentAuthentication\SilentAuthenticationServiceProvider::class,
];
```

Usage
-----

[](#usage)

### Default setup

[](#default-setup)

This package will overwrite the default `SessionGuard` by default. The customized session guard uses the `SilentAuthentication` trait which will allow you silently authenticate users.

If you're not interesting in this default or if it's breaking your application, you can disable it in the config file.

### SilentAuthentication trait

[](#silentauthentication-trait)

If you're already overwriting the default `SessionGuard` in your application, you can simply implement the `SilentAuthentication` trait.

```
use Illuminate\Auth\SessionGuard as BaseSessionGuard;
use CyrildeWit\LaravelSilentAuthentication\Guards\Traits\SilentAuthentication;

class SessionGuard extends BaseSessionGuard
{
    use SilentAuthentication;
}
```

Changelog
---------

[](#changelog)

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

License
-------

[](#license)

This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details.

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity48

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 ~216 days

Total

3

Last Release

2216d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/16477999?v=4)[Cyril de Wit](/maintainers/cyrildewit)[@cyrildewit](https://github.com/cyrildewit)

---

Top Contributors

[![cyrildewit](https://avatars.githubusercontent.com/u/16477999?v=4)](https://github.com/cyrildewit "cyrildewit (25 commits)")

---

Tags

laravelAuthenticationloginlogoutsilentno events

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/cyrildewit-laravel-silent-authentication/health.svg)

```
[![Health](https://phpackages.com/badges/cyrildewit-laravel-silent-authentication/health.svg)](https://phpackages.com/packages/cyrildewit-laravel-silent-authentication)
```

###  Alternatives

[auth0/login

Auth0 Laravel SDK. Straight-forward and tested methods for implementing authentication, and accessing Auth0's Management API endpoints.

2745.0M3](/packages/auth0-login)[alajusticia/laravel-logins

Session management in Laravel apps, user notifications on new access, support for multiple separate remember tokens, IP geolocation, User-Agent parser

2011.0k](/packages/alajusticia-laravel-logins)[maize-tech/laravel-magic-login

Laravel Magic Login

1808.1k](/packages/maize-tech-laravel-magic-login)[zefy/laravel-sso

Simple PHP SSO integration for Laravel

1013.0k](/packages/zefy-laravel-sso)

PHPackages © 2026

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