PHP code example of ejetar / laravel-firebird

1. Go to this page and download the library: Download ejetar/laravel-firebird library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

ejetar / laravel-firebird example snippets


Ejetar\LaravelFirebird\FirebirdServiceProvider::class

'firebird' => [
    'driver'         => 'firebird',
    'host'           => env('DB_HOST', 'localhost'),
    'database'       => env('DB_DATABASE','/storage/firebird/APPLICATION.FDB'),
    'username'       => env('DB_USERNAME', 'sysdba'),
    'password'       => env('DB_PASSWORD', 'masterkey'),
    'charset'        => env('DB_CHARSET', 'UTF8'),
    'role'           => 'RDB$ADMIN',
    //'engine_version' => '3.0', //it will be discovered automatically
]