Configuration file example : PostgreSQL
Example with a PostgreSQL database connexion :
<?php
return [
'development_environment' => true,
'log_level' => ILogger::ERROR,
'default_locale' => 'en_US',
'default_timezone' => 'Europe/Paris',
'base_url' => 'http://example.com',
'database' => [
'type' => 'pgsql',
'server' => 'localhost',
'username' => 'postgres',
'password' => 'password123',
'name' => 'mydb',
'schema' => 'bluebird'
],
'filters' => [
'RoutingFilter'
]
];
?>