Added bootstrap.php for Autoloader and Debugger.
This commit is contained in:
11
lib/bootstrap.php
Normal file
11
lib/bootstrap.php
Normal file
@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
// Serendipity
|
||||
// See LICENSE file for license information.
|
||||
|
||||
require_once __DIR__ . '/../vendor/autoload.php';
|
||||
|
||||
// TODO: REMOVE WHEN DONE DEVELOPING
|
||||
$whoops = new \Whoops\Run();
|
||||
$whoops->pushHandler(new \Whoops\Handler\PrettyPageHandler());
|
||||
$whoops->register();
|
Reference in New Issue
Block a user