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

ActiveLibrary

bee-b/laravel-phpbb-bridge
==========================

Authentication module for Laravel 5.4 and phpBB 3.2

v1.0.1(4y ago)010MITPHPPHP &gt;=5.4.0

Since Jun 7Pushed 4y agoCompare

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

READMEChangelog (1)Dependencies (1)Versions (4)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/04da53c7bf1d8443d7c27ae5092d2a31ad636d05efd308983576a6ffb6d6b21d/68747470733a2f2f706f7365722e707567782e6f72672f746f6874616d7973682f6c61726176656c2d70687062622d6272696467652f762f737461626c65)](https://packagist.org/packages/tohtamysh/laravel-phpbb-bridge) [![License](https://camo.githubusercontent.com/0bc0479ad288b265d2159719f1dde54dc70989fbed9a087f844536e177c783cd/68747470733a2f2f706f7365722e707567782e6f72672f746f6874616d7973682f6c61726176656c2d70687062622d6272696467652f6c6963656e7365)](https://packagist.org/packages/tohtamysh/laravel-phpbb-bridge)

### Installation

[](#installation)

#### Laravel

[](#laravel)

##### run composer

[](#run-composer)

```
composer require tohtamysh/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(
    Tohtamysh\LaravelPhpbbBridge\LaravelPhpbbBridgeServiceProvider::class,
);
```

##### publish config file

[](#publish-config-file)

```
artisan vendor:publish --provider="Tohtamysh\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

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 75% 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 ~789 days

Total

3

Last Release

1681d ago

Major Versions

0.1 → v1.0.02017-06-08

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/89344012?v=4)[bee-b](/maintainers/bee-b)[@bee-b](https://github.com/bee-b)

---

Top Contributors

[![tohtamysh](https://avatars.githubusercontent.com/u/1841267?v=4)](https://github.com/tohtamysh "tohtamysh (3 commits)")[![bee-b](https://avatars.githubusercontent.com/u/89344012?v=4)](https://github.com/bee-b "bee-b (1 commits)")

---

Tags

laravelphpbblaravel5phpbb3

### Embed Badge

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

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

###  Alternatives

[rtconner/laravel-likeable

Trait for Laravel Eloquent models to allow easy implementation of a 'like' or 'favorite' or 'remember' feature.

394388.0k5](/packages/rtconner-laravel-likeable)[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)[dolphiq/laravel-aescrypt

AES encrypt and decrypt Eloquent attributes inspired by elocryptfive

171.7k](/packages/dolphiq-laravel-aescrypt)

PHPackages © 2026

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