Skip to content
This repository has been archived by the owner on May 1, 2019. It is now read-only.

Commit

Permalink
added doctrine db config to local config
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Rieger committed Oct 23, 2015
1 parent d4d53ec commit 295b458
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions config/autoload/database.local.php.dist
Expand Up @@ -11,4 +11,17 @@ return [
'username' => 'CHANGEME',
'password' => 'CHANGEME',
],
'doctrine' => [
'connection' => [
'orm_default' => [
'params' => [
'host' => 'localhost',
'port' => '3306',
'user' => 'CHANGE_DEV_DB_USER',
'password' => 'CHANGE_DEV_DB_PASS',
'dbname' => 'CHANGE_DEV_DB_NAME',
],
],
],
],
];

0 comments on commit 295b458

Please sign in to comment.