bootstrap.php 286 B

12345678910
  1. <?php
  2. if (file_exists($file = __DIR__.'/../vendor/autoload.php')) {
  3. $loader = require_once $file;
  4. $loader->add('Asm89\Stack', __DIR__);
  5. $loader->add('Asm89\Stack', __DIR__ . '/../src');
  6. } else {
  7. throw new RuntimeException('Install dependencies to run test suite.');
  8. }