autoload.php 325 B

12345678910111213141516171819
  1. <?php
  2. ini_set('date.timezone', 'UTC');
  3. if (!$loader = @include __DIR__.'/../vendor/autoload.php') {
  4. $message = <<< EOF
  5. <p>You must set up the project dependencies by running composer install</p>
  6. EOF;
  7. if (PHP_SAPI === 'cli') {
  8. $message = strip_tags($message);
  9. }
  10. die($message);
  11. }
  12. return $loader;