bootstrap.php 589 B

1234567891011121314151617
  1. <?php
  2. call_user_func(function () {
  3. if (!is_file($autoloadFile = __DIR__ . '/../vendor/autoload.php')) {
  4. throw new \RuntimeException('Did not find vendor/autoload.php. Did you run "composer install --dev"?');
  5. }
  6. if (!is_file($autoloadCacheFile = __DIR__ . '/ExampleCacheTest.php')) {
  7. throw new \RuntimeException('Did not find CacheTest.php. Did you delete the "ExampleCacheTest.php"?');
  8. }
  9. /** @noinspection PhpIncludeInspection */
  10. require_once $autoloadFile;
  11. require_once $autoloadCacheFile;
  12. ini_set('date.timezone', 'Europe/Berlin');
  13. });