10 lines
163 B
PHP
10 lines
163 B
PHP
|
<?php
|
||
|
|
||
|
$ROOT = $_SERVER['DOCUMENT_ROOT'];
|
||
|
|
||
|
error_reporting(E_ALL);
|
||
|
ini_set('display_errors', 1);
|
||
|
|
||
|
require $ROOT . "/vendor/autoload.php";
|
||
|
|
||
|
// Other load tasks here
|