blob: d56d4666562a67aebe59324ddfda69cc605c441d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
<?php
set_error_handler(function () {
echo file_get_contents(dirname(__DIR__).'/INSTALL');
exit(1);
}, E_ALL);
require_once dirname(__DIR__) . '/vendor/autoload.php';
restore_error_handler();
|