PHPackages                             youkoulayley/laravel-phpbb-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. youkoulayley/laravel-phpbb-bridge

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

youkoulayley/laravel-phpbb-bridge
=================================

Authentication module for Laravel 5.4 and phpBB 3.2

v1.1.22(4y ago)038MITPHPPHP &gt;=5.4.0

Since Jun 7Pushed 4y agoCompare

[ Source](https://github.com/youkoulayley/laravel-phpbb-bridge)[ Packagist](https://packagist.org/packages/youkoulayley/laravel-phpbb-bridge)[ RSS](/packages/youkoulayley-laravel-phpbb-bridge/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (1)Versions (28)Used By (0)

This is fork package CallMeNP/lara-auth-bridge for Laravel 5.4 and phpBB 3.2
============================================================================

[](#this-is-fork-package-callmenplara-auth-bridge-for-laravel-54-and-phpbb-32)

For phpBB &lt; 3.2 see [CallMeNP/lara-auth-bridge](https://github.com/CallMeNP/lara-auth-bridge) Offers a simple API for the included custom phpBB authentication module for phpBB(3.0, 3.1) and Laravel 5.

[![Latest Stable Version](https://camo.githubusercontent.com/8435ca75e248049c45ff72380dbf63ad3b4869ed272b38b403c4872f8b559229/68747470733a2f2f706f7365722e707567782e6f72672f596f756b6f756c61796c65792f6c61726176656c2d70687062622d6272696467652f762f737461626c65)](https://packagist.org/packages/Youkoulayley/laravel-phpbb-bridge) [![License](https://camo.githubusercontent.com/446f20806106515e0d8856fdcdfcf533bf0fb591b1c9df8819e50eecf118954e/68747470733a2f2f706f7365722e707567782e6f72672f596f756b6f756c61796c65792f6c61726176656c2d70687062622d6272696467652f6c6963656e7365)](https://packagist.org/packages/Youkoulayley/laravel-phpbb-bridge)

### Installation

[](#installation)

#### Laravel

[](#laravel)

##### run composer

[](#run-composer)

```
composer require youkoulayley/laravel-phpbb-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(
    Youkoulayley\LaravelPhpbbBridge\LaravelPhpbbBridgeServiceProvider::class,
);
```

##### publish config file

[](#publish-config-file)

```
artisan vendor:publish --provider="Youkoulayley\LaravelPhpbbBridge\LaravelPhpbbBridgeServiceProvider"
```

##### edit config

[](#edit-config)

Change configs config/laravel-phpbb-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.2

[](#phpbb-32)

##### copy files

[](#copy-files)

Copy all files in the phpBB32 directory to your phpBB install folder

##### 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

29

—

LowBetter than 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity68

Established project with proven stability

 Bus Factor1

Top contributor holds 54.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 ~61 days

Recently: every ~0 days

Total

27

Last Release

1681d ago

Major Versions

0.1 → v1.0.02017-06-08

PHP version history (2 changes)0.1PHP &gt;=5.4.0

v1.1.15PHP &gt;=7.4.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/5a7c4a91845d4a7c993fa8fe0be54c298690060412be23503274cc373908bcd8?d=identicon)[Youkoulayley](/maintainers/Youkoulayley)

---

Top Contributors

[![aledefreitas](https://avatars.githubusercontent.com/u/3765557?v=4)](https://github.com/aledefreitas "aledefreitas (6 commits)")[![tohtamysh](https://avatars.githubusercontent.com/u/1841267?v=4)](https://github.com/tohtamysh "tohtamysh (3 commits)")[![youkoulayley](https://avatars.githubusercontent.com/u/2247492?v=4)](https://github.com/youkoulayley "youkoulayley (2 commits)")

---

Tags

laravelphpbblaravel5phpbb3

### Embed Badge

![Health badge](/badges/youkoulayley-laravel-phpbb-bridge/health.svg)

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

###  Alternatives

[anhskohbo/no-captcha

No CAPTCHA reCAPTCHA For Laravel.

1.8k8.5M33](/packages/anhskohbo-no-captcha)[callmenp/lara-auth-bridge

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

161.1k](/packages/callmenp-lara-auth-bridge)

PHPackages © 2026

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