Skip to content

Instantly share code, notes, and snippets.

@StuMason
Forked from andyfleming/database.php
Created July 20, 2018 13:29
Show Gist options
  • Save StuMason/31f7f50b3bdf8ba12c19f50f1e2ed8c7 to your computer and use it in GitHub Desktop.
Save StuMason/31f7f50b3bdf8ba12c19f50f1e2ed8c7 to your computer and use it in GitHub Desktop.
Database config for laravel/lumen
<?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