PHPackages                             lsces/illuminate-firebird - 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. lsces/illuminate-firebird

ActiveLibrary

lsces/illuminate-firebird
=========================

Firebird database driver for the illuminate database package of the Laravel Framework

V2.0.2(2mo ago)19[1 PRs](https://github.com/lsces/illuminate-firebird/pulls)MITPHPPHP ^8.3

Since Mar 2Pushed 1mo agoCompare

[ Source](https://github.com/lsces/illuminate-firebird)[ Packagist](https://packagist.org/packages/lsces/illuminate-firebird)[ RSS](/packages/lsces-illuminate-firebird/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (4)Versions (5)Used By (0)

Firebird for Laravel
====================

[](#firebird-for-laravel)

This package adds support for the Firebird PDO Database in the illuminate package of the Laravel framework. It has been renamed to use illuminate, since it is not necessary to use laravel in order to use the illuminate database module. Originally it was created by Harry Gulliford. Unfortunately, the original package is no longer maintained (doesn't support Laravel 12). Thank you, Harry, for your work! It was forked to firebird-support under xGrz who brought it up to work with Laravel 12 and I could ask to push the later changes back into that fork, but it seemed easier to follow the annoying composer fashion and rename the driver again if only so that it can be registered with  ... so that we can actually use it going forward

Version Support
---------------

[](#version-support)

- **PHP:** Only currently tested with 8.4, but should work back to 8.2.
- **Laravel:** 12.x
- **Firebird:** Only tested with 5.0 and currently it does rely on the automagic incremental fields that appeared with 5.0

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

[](#installation)

You can install the source package via composer:

```
composer require lsces/illuminate-firebird
```

but at some point I would like to see it migrate under the FirebirdSQL umberella.

*The package will automatically register itself.*And that is the basis on which this switch of name is being undertaken! Initial problems with loading the driver into illuminate have now been sorted and  shows how to use illuminate's resolverFor function to to add it directly rather than relying on the automatic registration that FirebirdServiceProvider should action if the application is using the whole laravel frameowrk.

Declare the connection as you would normally by using `firebird` as the driver:

```
'connections' => [

    'firebird' => [
        'driver'   => 'firebird',
        'host'     => env('DB_HOST', 'localhost'),
        'port'     => env('DB_PORT', '3050'),
        'database' => env('DB_DATABASE', '/path_to/database.fdb'),
        'username' => env('DB_USERNAME', 'sysdba'),
        'password' => env('DB_PASSWORD', 'masterkey'),
        'charset'  => env('DB_CHARSET', 'UTF8'),
        'role'     => null,
    ],

],
```

The location of these settings varies based on the higher level application.

The current testing has been carried out in [webtrees](https://dev.webtrees.net/) which is not using Laravel, and only the illuminate/database package (having upgraded from ADOdb previously).

TODO
----

[](#todo)

I am thinking this is worth moving to FirebirdSQL repo to live with the other firebird extra drivers. There are still a few holes that need to be plugged, but so far I have a working webtrees site to replace the phpgedview one and I now I'm ready to hit some of the finer detail. Testing on older versions of Firebird I will leave to others, and the current autoincrement fields rely on FB5's magic paired with RETURNING to emulate the lastIdentId() in PDO. I think this is the right aproach although I do miss being able to check the generator values, and my ADOdb approach was to create the generator and trigger. Something I've not investigated in illuminate ... yet.

Limitations
-----------

[](#limitations)

The limitation that the v1.0.x firebird-support package did not intend to support database migrations has been addresssed and the current build is happily handling the Migration trail for webtrees. The debate on whether this is an improvement over using an update trail which simply builds a clean current schema is ongoing.

Credits
-------

[](#credits)

- [Harry Gulliford](https://github.com/harrygulliford) original laravel-firebird build
- [xGrz](https://github.com/xGrz) V1.0.x of the firebird-support fork
- [lsces](https://github.com/lsces) V1.1.x fork of firebird-support ported to here and tested in webtrees.

License
-------

[](#license)

Licensed under the [MIT](https://choosealicense.com/licenses/mit/) license.

###  Health Score

43

—

FairBetter than 90% of packages

Maintenance95

Actively maintained with recent releases

Popularity8

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 88% 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 ~1 days

Total

4

Last Release

64d ago

Major Versions

v1.1.0 → v2.0.02026-03-05

PHP version history (3 changes)v1.1.0PHP ^8.2

v2.0.0PHP ^8.4

v2.0.1PHP ^8.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/2474799bd9affbad52fd8b751a30627afed952a849c3125a17fad18cd54ea3d8?d=identicon)[lsces](/maintainers/lsces)

---

Top Contributors

[![lsces](https://avatars.githubusercontent.com/u/305602?v=4)](https://github.com/lsces "lsces (44 commits)")[![xGrz](https://avatars.githubusercontent.com/u/33755434?v=4)](https://github.com/xGrz "xGrz (6 commits)")

### Embed Badge

![Health badge](/badges/lsces-illuminate-firebird/health.svg)

```
[![Health](https://phpackages.com/badges/lsces-illuminate-firebird/health.svg)](https://phpackages.com/packages/lsces-illuminate-firebird)
```

###  Alternatives

[mongodb/laravel-mongodb

A MongoDB based Eloquent model and Query builder for Laravel

7.1k7.2M71](/packages/mongodb-laravel-mongodb)[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9682.1M97](/packages/roots-acorn)[dyrynda/laravel-model-uuid

This package allows you to easily work with UUIDs in your Laravel models.

4802.8M8](/packages/dyrynda-laravel-model-uuid)[psalm/plugin-laravel

Psalm plugin for Laravel

3274.9M308](/packages/psalm-plugin-laravel)[watson/validating

Eloquent model validating trait.

9723.3M46](/packages/watson-validating)[pressbooks/pressbooks

Pressbooks is an open source book publishing tool built on a WordPress multisite platform. Pressbooks outputs books in multiple formats, including PDF, EPUB, web, and a variety of XML flavours, using a theming/templating system, driven by CSS.

44643.1k1](/packages/pressbooks-pressbooks)

PHPackages © 2026

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