Skip to content

amargoCactus/laravel-firebird

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

Firebird Illuminate package for Laravel 5

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%