Firebird database driver v2.1.0 for the Laravel Framework v5.5+ (PHP v7.1+, Firebird v2.5)
[SHOWTOGROUPS=4,20]
Lavravel: The PHP Framework for Web Artisans official site: Для просмотра ссылки Войдиили Зарегистрируйся
readme:
This package adds support for the Firebird PDO driver in Laravel applications. Support for Laravel 5.5+ (including 6 & 7) with PHP 7.1+ and Firebird 2.5
Installation: You can install the package via composer: composer require harrygulliford/laravel-firebird - The package will automatically register itself.
Declare the connection within your config/database.php file, using firebird as the driver:
To register this package in Lumen, you'll also need to add the following line to the service providers in your config/app.php file: $app->register(\Firebird\FirebirdServiceProvider::class);
Credits: This package was originally forked from Для просмотра ссылки Войдиили Зарегистрируйся with enhancements from Для просмотра ссылки Войди или Зарегистрируйся.
License: Licensed under the Для просмотра ссылки Войдиили Зарегистрируйся licence.
download versions: Для просмотра ссылки Войдиили Зарегистрируйся
[/SHOWTOGROUPS]
Lavravel: The PHP Framework for Web Artisans official site: Для просмотра ссылки Войди
readme:
This package adds support for the Firebird PDO driver in Laravel applications. Support for Laravel 5.5+ (including 6 & 7) with PHP 7.1+ and Firebird 2.5
Installation: You can install the package via composer: composer require harrygulliford/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,
],
],
To register this package in Lumen, you'll also need to add the following line to the service providers in your config/app.php file: $app->register(\Firebird\FirebirdServiceProvider::class);
Credits: This package was originally forked from Для просмотра ссылки Войди
License: Licensed under the Для просмотра ссылки Войди
download versions: Для просмотра ссылки Войди
[/SHOWTOGROUPS]