bootstrap.php 201 B

12345678910
  1. <?php
  2. $filename = __DIR__ . '/../vendor/autoload.php';
  3. if (!file_exists($filename)) {
  4. echo 'You must first install the vendors using composer.' . PHP_EOL;
  5. exit(1);
  6. }
  7. require_once $filename;