Skip to content

Instantly share code, notes, and snippets.

@saidqb
Forked from andyfleming/database.php
Created March 16, 2022 11:00
Show Gist options
  • Save saidqb/fb12e5585ffa606c683c9d23a8b88287 to your computer and use it in GitHub Desktop.
Save saidqb/fb12e5585ffa606c683c9d23a8b88287 to your computer and use it in GitHub Desktop.
Database config for laravel/lumen
<?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