-
-
Save StuMason/31f7f50b3bdf8ba12c19f50f1e2ed8c7 to your computer and use it in GitHub Desktop.
Database config for laravel/lumen
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 [ | |
'default' => 'accounts', | |
'migrations' => 'migrations', | |
'connections' => [ | |
'accounts' => [ | |
'driver' => 'mysql', | |
'host' => 'localhost', | |
'database' => 'accounts', | |
'username' => 'root', | |
'password' => 'secret', | |
'charset' => 'utf8', | |
'collation' => 'utf8_unicode_ci', | |
'prefix' => '', | |
'strict' => false, | |
], | |
'content' => [ | |
'driver' => 'mysql', | |
'host' => 'localhost', | |
'database' => 'content', | |
'username' => 'root', | |
'password' => 'secret', | |
'charset' => 'utf8', | |
'collation' => 'utf8_unicode_ci', | |
'prefix' => '', | |
'strict' => false, | |
], | |
], | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment