PHPackages                             callmenp/lara-auth-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. callmenp/lara-auth-bridge

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

callmenp/lara-auth-bridge
=========================

Offers a simple API for the included custom phpBB authentication module. for phpBB3.0 and laravel5

v2.1.0(10y ago)161.1k7[5 issues](https://github.com/CallMeNP/lara-auth-bridge/issues)MITPHPPHP &gt;=5.4.0

Since Jun 18Pushed 5y ago5 watchersCompare

[ Source](https://github.com/CallMeNP/lara-auth-bridge)[ Packagist](https://packagist.org/packages/callmenp/lara-auth-bridge)[ RSS](/packages/callmenp-lara-auth-bridge/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (3)Dependencies (1)Versions (6)Used By (0)

This package is unmaintained.

I do not intend to continue development on this project due to changing priorities at my day job. I'll keep the repo up in case it is still useful to anyone.

Thanks @Bukashk0zzz

Allows phpBB (3.0 &amp; 3.1) auth over Laravel 5
================================================

[](#allows-phpbb-30--31-auth-over-laravel-5)

For Laravel 4.\* see [r-a-stone's work](https://github.com/r-a-stone/Laravel-Auth-Bridge) Auth driver to create/authenticate accounts.

[![Latest Stable Version](https://camo.githubusercontent.com/d215e687187e89a08ec366503a4c9a430ae98f3b391f6eec3d1e5ea926daa746/68747470733a2f2f706f7365722e707567782e6f72672f63616c6c6d656e702f6c6172612d617574682d6272696467652f762f737461626c65)](https://packagist.org/packages/callmenp/lara-auth-bridge) [![Total Downloads](https://camo.githubusercontent.com/bce7e3e5441bd6a04f4c711618078428ab856ad7f0a61df32c90bd292e89d667/68747470733a2f2f706f7365722e707567782e6f72672f63616c6c6d656e702f6c6172612d617574682d6272696467652f646f776e6c6f616473)](https://packagist.org/packages/callmenp/lara-auth-bridge) [![License](https://camo.githubusercontent.com/8d97bef3dbdd356ac233598b0f828763894ad2f06fe73537c397d0c6a84b93dd/68747470733a2f2f706f7365722e707567782e6f72672f63616c6c6d656e702f6c6172612d617574682d6272696467652f6c6963656e7365)](https://packagist.org/packages/callmenp/lara-auth-bridge)

### Installation

[](#installation)

#### Laravel

[](#laravel)

##### run composer

[](#run-composer)

```
composer require callmenp/lara-auth-bridge
```

##### add service provider

[](#add-service-provider)

Register the Service Provider by adding it to your project's providers array in app.php

```
'providers' => array(
    'CallMeNP\LaraAuthBridge\LaraAuthBridgeServiceProvider',
);
```

##### edit config

[](#edit-config)

Change configs config/lara-auth-bridge.php

```
// Create a secret app key in
'appkey' => 'yoursecretapikey'

// Update the column names used for the Laravel Auth driver
'username_column' => 'user_login',
'password_column' => 'user_password'

// Set true if you use multiAuth, false if default Laravel Auth
'client_auth' => false
```

##### exclude URIs from CSRF protection

[](#exclude-uris-from-csrf-protection)

In file app/Http/Middleware/VerifyCsrfToken.php add

```
protected $except = [
        	'auth-bridge/*',
    	];
```

More info how to exclude uris on [laravel site](http://laravel.com/docs/master/routing#csrf-excluding-uris)

#### phpBB 3.1

[](#phpbb-31)

##### copy files

[](#copy-files)

Copy all files in the phpBB 3.1 directory to your phpBB install

##### edit config

[](#edit-config-1)

Edit the file located at {PHPBB-ROOT}/ext/laravel/bridgebb/auth/provider/bridgebb.php

```
define('LARAVEL_URL', 'http://www.example.com'); //your laravel application's url
define('BRIDGEBB_API_KEY', "yoursecretapikey"); //the same key you created earlier
define ('LARAVEL_CUSTOM_USER_DATA', serialize ([
    'email' => 'user_email',
    'dob' => 'user_birthday',
])); // Update the columns you want to come from Laravel user to phpBB user
```

###### setting

[](#setting)

Login to the phpBB admin panel enable bridgebb extension and after set bridgebb as the authentication module

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance14

Infrequent updates — may be unmaintained

Popularity25

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor1

Top contributor holds 50% 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 ~33 days

Total

4

Last Release

3887d ago

Major Versions

v1.0.0 → v2.0.02015-09-22

### Community

Maintainers

![](https://www.gravatar.com/avatar/ac76a43037ae8c377c420a94074b3ea98ccf3f30bfc0ad0abe4f665d8025954e?d=identicon)[CallMeNP](/maintainers/CallMeNP)

---

Top Contributors

[![Bukashk0zzz](https://avatars.githubusercontent.com/u/1908342?v=4)](https://github.com/Bukashk0zzz "Bukashk0zzz (10 commits)")[![CallMeNP](https://avatars.githubusercontent.com/u/3406629?v=4)](https://github.com/CallMeNP "CallMeNP (10 commits)")

---

Tags

laravelphpbbBridgelaravel5phpbb3

### Embed Badge

![Health badge](/badges/callmenp-lara-auth-bridge/health.svg)

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

###  Alternatives

[anhskohbo/no-captcha

No CAPTCHA reCAPTCHA For Laravel.

1.8k8.5M33](/packages/anhskohbo-no-captcha)

PHPackages © 2026

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