-
-
Save saidqb/fb12e5585ffa606c683c9d23a8b88287 to your computer and use it in GitHub Desktop.
Database config for laravel/lumen
This file contains 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', | |
'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