58 lines
1.2 KiB
PHP
Executable File
58 lines
1.2 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* MiniMVC
|
|
*
|
|
* Convention-based micro-framework for PHP
|
|
*
|
|
* @package miniMVC
|
|
* @author Timothy J. Warren
|
|
* @copyright Copyright (c) 2011 - 2012
|
|
* @link https://github.com/aviat4ion/miniMVC
|
|
* @license http://philsturgeon.co.uk/code/dbad-license
|
|
*/
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
/**
|
|
* miniMVC bootstrap file
|
|
*
|
|
* @package miniMVC
|
|
* @subpackage App
|
|
*/
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
namespace miniMVC;
|
|
|
|
use \Whoops\Handler\PrettyPageHandler;
|
|
use \Whoops\Handler\JsonResponseHandler;
|
|
|
|
error_reporting(-1);
|
|
|
|
// Set the default paths
|
|
define('MM_BASE_PATH', __DIR__);
|
|
define('MM_SYS_PATH', __DIR__.'/sys/');
|
|
define('MM_APP_PATH', __DIR__.'/app/');
|
|
|
|
// Autoload vendors
|
|
require(MM_BASE_PATH . '/vendor/autoload.php');
|
|
|
|
// Setup error handling
|
|
$whoops = new \Whoops\Run();
|
|
$defaultHandler = new PrettyPageHandler();
|
|
$whoops->pushHandler($defaultHandler);
|
|
$whoops->register();
|
|
|
|
// Require the basic configuration file
|
|
require(MM_APP_PATH . 'config/config.php');
|
|
|
|
// Require the most important files
|
|
require(MM_SYS_PATH . 'common.php');
|
|
|
|
// Start the autoloader
|
|
spl_autoload_register('miniMVC\autoload');
|
|
|
|
// And away we go!
|
|
init();
|
|
|
|
// End of index.php
|