bootstrap.php 299 B

1234567891011
  1. <?php
  2. /**
  3. * Whoops - php errors for cool kids
  4. * @author Filipe Dobreira <http://github.com/filp>
  5. *
  6. * Bootstraper for PHPUnit tests.
  7. */
  8. error_reporting(E_ALL | E_STRICT);
  9. $_ENV['whoops-test'] = true;
  10. $loader = require_once __DIR__ . '/../vendor/autoload.php';
  11. $loader->add('Whoops\\', __DIR__);