PHPackages                             october-bridge/bridge - 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. october-bridge/bridge

Abandoned → [october-bridge/bridge](/?search=october-bridge%2Fbridge)Library[Authentication &amp; Authorization](/categories/authentication)

october-bridge/bridge
=====================

Winter Core Extending Laravel Auth

1.0.1(4y ago)71.3kMITPHP

Since Mar 22Pushed 4y ago1 watchersCompare

[ Source](https://github.com/Teranode/winter-laravel-auth-bridge)[ Packagist](https://packagist.org/packages/october-bridge/bridge)[ RSS](/packages/october-bridge-bridge/feed)WikiDiscussions master Synced 3d ago

READMEChangelog (2)DependenciesVersions (3)Used By (0)

winter-laravel-auth
===================

[](#winter-laravel-auth)

This will allow you to use Laravel's core auth with WinterCMS

New Package
-----------

[](#new-package)

Please Consider using this instead to avoid having to manually change your files:

How to install
--------------

[](#how-to-install)

`composer require winter-bridge/bridge`

`php artisan vendor:publish --tag=winter-bridge-config` - this will create an `auth.php` config file in the `congfig/` folder with settings for winter

---

In bootstrap/app.php change:

```
$app = new Winter\Storm\Foundation\Application(
    realpath(__DIR__.'/../')
);

```

to

```
$app = new Winter\Bridge\Foundation\Application(
    realpath(__DIR__.'/../')
);

```

and change:

```
$app->singleton(
    Illuminate\Contracts\Http\Kernel::class,
    Winter\Storm\Foundation\Http\Kernel::class
);

```

to

```
$app->singleton(
    Illuminate\Contracts\Http\Kernel::class,
    Winter\Bridge\Foundation\Http\Kernel::class
);

```

---

Next in `config/app.php` add in the `providers` **after** `System\SystemProvider`:

```
Illuminate\Auth\AuthServiceProvider::class,
Winter\Bridge\Auth\AuthServiceProvider::class,

```

now if you want to use said auth you'd do so in the user plugin:

```
Auth::extend('winter', function($app, $name, array $config)
{
    $guard = new \Winter\User\Classes\AuthManager;
    return $guard;
});

```

(you can also add the `Gate` alias if you want)

After that the package should essentially act as a layer over Laravel's auth while retaining winter's functions.

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity20

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity53

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

Total

2

Last Release

1586d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/67ed5dfdcb2f1b402dc827ae9b47c427f798f9be57b5e5efbf058c75e944e3e1?d=identicon)[Teranode](/maintainers/Teranode)

---

Top Contributors

[![freddy38510](https://avatars.githubusercontent.com/u/23400420?v=4)](https://github.com/freddy38510 "freddy38510 (2 commits)")

---

Tags

laravelauthcmswinter

### Embed Badge

![Health badge](/badges/october-bridge-bridge/health.svg)

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

###  Alternatives

[orchestra/auth

Auth Component for Orchestra Platform

24108.5k3](/packages/orchestra-auth)[codebot/entrust

This package provides a flexible way to add Role-based Permissions to Laravel

1596.6k](/packages/codebot-entrust)[ingria/laravel-x509-auth

Laravel 5 Client Certificate auth middleware

375.6k](/packages/ingria-laravel-x509-auth)[setiawanhu/sanctum-auth

Laravel package for generating user authentication feature using Laravel Sanctum

132.8k](/packages/setiawanhu-sanctum-auth)

PHPackages © 2026

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