1
0

Added bootstrap.php for Autoloader and Debugger.

This commit is contained in:
2022-02-12 04:41:04 +01:00
parent a81734cdc3
commit 4bee231cc6
4 changed files with 14 additions and 10 deletions

11
lib/bootstrap.php Normal file
View 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();