Skip to content

Instantly share code, notes, and snippets.

@Philosoft
Created August 28, 2017 19:59
Show Gist options
  • Save Philosoft/7ac82a910b59e3494b6c726d209ad392 to your computer and use it in GitHub Desktop.
Save Philosoft/7ac82a910b59e3494b6c726d209ad392 to your computer and use it in GitHub Desktop.
<?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