Wiggum

a php framework

Configuration


All of the configuration files for the Wiggum framework are stored in the config directory.

There are also a number of config settings that are required by the Wiggum framework. These are stored in the app.php configuration file.

<?php
/************************/
/* app config           */
/************************/

return [
	'environment' => 'development',                      //required
	'timezone' => 'America/Toronto',                     //required
		
	'boot' => [
			'services' => 'app/boot/services.php',       //required
			'middleware' => 'app/boot/middleware.php',   //required
			'routes' => 'app/boot/routes.php'            //required
	]
];