Created
December 6, 2016 09:24
-
-
Save devLopez/a4adb8d1479d58195f18d6a863586a12 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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