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
Requires
- php: ^7.3|^8.0
- illuminate/container: ^8.0
- illuminate/database: ^8.0
- illuminate/events: ^8.0
- illuminate/support: ^8.0
Requires (Dev)
- mockery/mockery: ~1.0
- orchestra/testbench: ~3.7|^4.0
- phpunit/phpunit: ~7.0|^8.0
This package is auto-updated.
Last update: 2021-03-29 16:08:14 UTC
README
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.