<?php
// base config which is overwritten by individual
// environment-dependant configuration files
$config = [
	'debug' => false,
	'db' => [
		'dsn' => null,
		'username' => null,
		'password' => null
	]
];

return $config;