Skip to content

Instantly share code, notes, and snippets.

@cloudwales
Last active March 5, 2017 12:52
Show Gist options
  • Save cloudwales/3615eb1ce3ba3f63558a042c3fda3c50 to your computer and use it in GitHub Desktop.
Save cloudwales/3615eb1ce3ba3f63558a042c3fda3c50 to your computer and use it in GitHub Desktop.
Updated Config Vars DB Settings
<?php
'mysql' => [
'driver' => 'mysql',
'host' => env('DB_HOST', getenv("DB_HOST")),
'port' => env('DB_PORT', '3306'),
'database' => env('DB_DATABASE', getenv("DB_DATABASE")),
'username' => env('DB_USERNAME', getenv("DB_USERNAME")),
'password' => env('DB_PASSWORD', getenv("DB_PASSWORD")),
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_unicode_ci',
'prefix' => '',
'strict' => true,
'engine' => null,
],
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment