Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.42 KB

README.md

File metadata and controls

31 lines (24 loc) · 1.42 KB

Firebird for Laravel

Latest Stable Version Total Downloads License

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

You can install the package via composer:

composer require harrygulliford/laravel-firebird

The package will automatically register itself.

Declare your connection in the database config, using 'firebird' as the driver:

'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'),
],

This package was originally forked from acquestvanzuydam/laravel-firebird with enhancements from sim1984/laravel-firebird.

Licensed under the MIT licence.