bootstrap.php 225 B

12345678
  1. <?php
  2. if ( ! is_file($autoloadFile = __DIR__.'/../vendor/autoload.php')) {
  3. echo 'Could not find "vendor/autoload.php". Did you forget to run "composer install --dev"?'.PHP_EOL;
  4. exit(1);
  5. }
  6. require_once $autoloadFile;