blob: 90afaebfd7836310ed632e97ec5959dfb474781e (
plain)
1
2
3
4
5
6
7
|
<?php
error_reporting(E_ALL);
ini_set("display_errors", 1);
set_include_path(dirname(__FILE__). '/src' . PATH_SEPARATOR . get_include_path());
require_once('vendor/autoload.php');
?>
|