Skip to content

Instantly share code, notes, and snippets.

@devLopez
Created December 6, 2016 09:24
Show Gist options
  • Save devLopez/a4adb8d1479d58195f18d6a863586a12 to your computer and use it in GitHub Desktop.
Save devLopez/a4adb8d1479d58195f18d6a863586a12 to your computer and use it in GitHub Desktop.
<?php
return [
// Configuração da conexão padrão
'default' => env('DB_CONNECTION', 'firebird'),
// Configurações dos outros bancos de dados
// COnfiguração do firebird
'firebird' => [
'driver' => 'firebird',
'host' => 'localhost',
'database' => '/path/to/database.fdb',
'username' => 'sysdba',
'password' => 'masterkey',
'charset' => 'ISO8859_1',
'collation' => 'ISO8859_general_ci'
]
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment