2016-12-07 00:21:46 -05:00
|
|
|
<?php
|
|
|
|
|
2016-12-30 12:41:14 -05:00
|
|
|
ini_set('display_startup_errors', 1);
|
|
|
|
ini_set('html_errors', 1);
|
2017-01-31 19:22:05 -05:00
|
|
|
ini_set('memory_limit', '-1');
|
2016-12-30 19:36:35 -05:00
|
|
|
error_reporting(E_ALL);
|
2016-12-30 12:41:14 -05:00
|
|
|
|
2016-12-07 00:21:46 -05:00
|
|
|
foreach ([__DIR__ . '/../../../autoload.php', __DIR__ . '/../vendor/autoload.php'] as $file) {
|
|
|
|
if (file_exists($file)) {
|
2017-10-29 14:39:23 -04:00
|
|
|
/** @psalm-suppress UnresolvableInclude */
|
2016-12-07 00:21:46 -05:00
|
|
|
require $file;
|
|
|
|
break;
|
|
|
|
}
|
2016-12-30 12:41:14 -05:00
|
|
|
}
|