bootstrap.php 198 B

123456789
  1. <?php
  2. set_error_handler(function () {
  3. echo file_get_contents(dirname(__DIR__).'/INSTALL');
  4. exit(1);
  5. }, E_ALL);
  6. require_once dirname(__DIR__) . '/vendor/autoload.php';
  7. restore_error_handler();