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

ActiveLibrary

bee-b/lara-auth-bridge
======================

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

v2.2.1(4y ago)07MITPHPPHP &gt;=5.4.0

Since Jun 18Pushed 4y agoCompare

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

READMEChangelog (2)Dependencies (1)Versions (8)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

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

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

Recently: every ~551 days

Total

6

Last Release

1682d ago

Major Versions

v1.0.0 → v2.0.02015-09-22

### Community

Maintainers

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

---

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)")[![bee-b](https://avatars.githubusercontent.com/u/89344012?v=4)](https://github.com/bee-b "bee-b (2 commits)")

---

Tags

laravelphpbbBridgelaravel5phpbb3

### Embed Badge

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

```
[![Health](https://phpackages.com/badges/bee-b-lara-auth-bridge/health.svg)](https://phpackages.com/packages/bee-b-lara-auth-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)[laravel-parse/parse

Parse Is A Parse SDK Bridge For Laravel 5

1177.6k](/packages/laravel-parse-parse)[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)
