PHPackages                             triad-ltd/expauth - 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. triad-ltd/expauth

ActiveLibrary

triad-ltd/expauth
=================

A Laravel authentication driver that supports Expression Engine's membership system. New users will default to Laravel's bcrypt encryption (extremely secure), but existing users who have registered using Expression Engine can also be authenticated. Also handles their reset password procedure.

1.4.0(11mo ago)030MITPHPPHP &gt;=8.3.0

Since Feb 11Pushed 11mo agoCompare

[ Source](https://github.com/triad-ltd/expauth)[ Packagist](https://packagist.org/packages/triad-ltd/expauth)[ Docs](https://github.com/triad-ltd/expauth)[ RSS](/packages/triad-ltd-expauth/feed)WikiDiscussions master Synced yesterday

READMEChangelog (5)Dependencies (2)Versions (20)Used By (0)

[![Latest Stable Version](https://camo.githubusercontent.com/e6633863fd313eabae46912c2ca11a23aa61a3eaf306eb5368a5f6381de138dc/68747470733a2f2f706f7365722e707567782e6f72672f74726961642d6c74642f657870617574682f76)](//packagist.org/packages/triad-ltd/expauth) [![Total Downloads](https://camo.githubusercontent.com/9422c0a84fb279bc5688274f64ed472ef94399073043f70ec67c2ee9483aad15/68747470733a2f2f706f7365722e707567782e6f72672f74726961642d6c74642f657870617574682f646f776e6c6f616473)](//packagist.org/packages/triad-ltd/expauth) [![Latest Unstable Version](https://camo.githubusercontent.com/432e6a7292800a088d9a7eaf611b20f316181d7df7724a5a8fe90f3eaba11201/68747470733a2f2f706f7365722e707567782e6f72672f74726961642d6c74642f657870617574682f762f756e737461626c65)](//packagist.org/packages/triad-ltd/expauth) [![License](https://camo.githubusercontent.com/84ea7f5ef4b9f2f6dd346ed979af0cc5577c3e7519ad84e13793be7d944df8fa/68747470733a2f2f706f7365722e707567782e6f72672f74726961642d6c74642f657870617574682f6c6963656e7365)](//packagist.org/packages/triad-ltd/expauth)

\#Laravel Expression Engine User Authentication

Allows you to switch your Expression Engine website to Laravel, by handling the authentication of Expression Engine members. This package allows you to easily build a front end in Laravel for Expression Engine websites, without worrying about how existing members logins and registrations will work.

**For Laravel 12 support, please use the 1.4.0 version.**

What it does
------------

[](#what-it-does)

Expression Engine uses a number of different hashing algorithms, such as SHA512, SHA256, SHA1 and even MD5 (*shudder*), whilst Laravel 5 uses the much more secure bcrypt.

This package will allow your existing Expression Engine members to log in with their existing login credentials, and new users can benefit from having their data hashed with the latest bcrypt algorithm.

Furthermore, once an Expression Engine user has logged in, it's very easy to switch them over to bcrypt encryption as the `needsRehash()` method will always return true for Expression Engine members.

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

[](#installation)

In your composer.json file, add:

```
    "require": {
       "triad-ltd/expauth": "^1.4.0"
    },
    "repositories": [
        {
            "type": "git",
            "url": "git@github.com:triad-ltd/expauth.git"
        }
    ]

```

In config/auth.php, change

```
    'driver' => 'eloquent',

```

to

```
    'driver' => 'ExpressionEngineAuth',

```

In your User model, make sure that you set the table and primary key fields as per the Expression Engine schema:

```
    protected $table = 'exp_members';
	protected $primaryKey = 'member_id';

```

### LV 10 Structure only

[](#lv-10-structure-only)

Then, in config/app.php add

```
    'TriadLtd\ExpAuth\ExpressionEngineUserServiceProvider',
    'TriadLtd\ExpAuth\ExpressionEngineHasherServiceProvider',

```

and (optionally) comment out

```
    //'Illuminate\Hashing\HashServiceProvider',

```

and that's it!

Usage
-----

[](#usage)

Authentication works in exactly the same way as Laravel's regular auth methods.

Licence and credit
------------------

[](#licence-and-credit)

This package is open-sourced software licensed under the MIT license. Many thanks to the original package (pixelfusion/ExpAuth) upon which this was based, by PixelFusion.

###  Health Score

42

—

FairBetter than 90% of packages

Maintenance51

Moderate activity, may be stable

Popularity7

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity87

Battle-tested with a long release history

 Bus Factor1

Top contributor holds 88.3% 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 ~209 days

Recently: every ~442 days

Total

19

Last Release

341d ago

Major Versions

1.2.2 → 5.2.x-dev2016-11-09

PHP version history (3 changes)1.0.0PHP &gt;=5.5.0

1.2.5PHP &gt;=7.2.0

1.3.0PHP &gt;=8.3.0

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/3266378?v=4)[Triad Ltd](/maintainers/triad-ltd)[@triad-ltd](https://github.com/triad-ltd)

---

Top Contributors

[![amochohan](https://avatars.githubusercontent.com/u/2978619?v=4)](https://github.com/amochohan "amochohan (53 commits)")[![meatpaste](https://avatars.githubusercontent.com/u/2962872?v=4)](https://github.com/meatpaste "meatpaste (3 commits)")[![EJGarner](https://avatars.githubusercontent.com/u/112705577?v=4)](https://github.com/EJGarner "EJGarner (2 commits)")[![patryk-k](https://avatars.githubusercontent.com/u/48892012?v=4)](https://github.com/patryk-k "patryk-k (2 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/triad-ltd-expauth/health.svg)

```
[![Health](https://phpackages.com/badges/triad-ltd-expauth/health.svg)](https://phpackages.com/packages/triad-ltd-expauth)
```

###  Alternatives

[anourvalar/eloquent-serialize

Laravel Query Builder (Eloquent) serialization

11320.2M21](/packages/anourvalar-eloquent-serialize)[namu/wirechat

A Laravel Livewire messaging app for teams with private chats and group conversations.

54324.5k](/packages/namu-wirechat)[statamic-rad-pack/runway

Eloquently manage your database models in Statamic.

135192.6k5](/packages/statamic-rad-pack-runway)

PHPackages © 2026

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