Created
August 28, 2017 19:59
-
-
Save Philosoft/7ac82a910b59e3494b6c726d209ad392 to your computer and use it in GitHub Desktop.
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 [ | |
"doctrine" => [ | |
"connection" => [ | |
"orm_default" => [ | |
"driverClass" => 'Doctrine\DBAL\Driver\PDOPgSql\Driver', | |
"params" => [ | |
"host" => "localhost", | |
"port" => 5433, // non standard port | |
"user" => "USERNAME", | |
"password" => "PASSWORD", | |
"dbname" => "DBNAME" | |
] | |
], | |
] | |
] | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment