<?php
// base config which is overwritten by individual
// environment-dependant configuration files
$config = [
	'debug' => false,
	'db' => [
		'dsn' => null,
		'username' => null,
		'password' => null
	],
	'secret_key' => 'AqeZFu4MWMZ=P2H_SMgS%%7y9aas52%$^eQSQ%HQbYqU(fDo',
	'jwt_lifetime' => 86400 * 365 * 5, // five years should be enough for now...
];

return $config;