pe46dro/laravel-firebird

This package is abandoned and no longer maintained. The author suggests using the harrygulliford/laravel-firebird package instead.

Firebird database driver for the Laravel Framework

8.0.1 2021-03-24 15:20 UTC

This package is auto-updated.

Last update: 2021-03-29 16:08:14 UTC


README

Latest Stable Version Total Downloads License

This package adds support for the Firebird PDO driver in Laravel applications. Support for Laravel 7 with PHP 7.2.5+ and Firebird 2.5

Installation

You can install the package via composer:

composer require pe46dro/laravel-firebird

The package will automatically register itself.

Declare the connection within your config/database.php file, using firebird as the driver:

'connections' => [

    'firebird' => [
        'driver'   => 'firebird',
        'host'     => env('DB_HOST', 'localhost'),
        '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,
    ],

],

Credits

This package was originally forked from harrygulliford/laravel-firebird.

License

Licensed under the MIT licence.