bootstrap.php 568 B

1234567891011121314151617181920
  1. <?php declare(strict_types=1);
  2. /*
  3. * This file is part of the Monolog package.
  4. *
  5. * (c) Jordi Boggiano <j.boggiano@seld.be>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. date_default_timezone_set('UTC');
  11. require __DIR__.'/../vendor/autoload.php';
  12. // B.C. for PSR Log's old inheritance
  13. // see https://github.com/php-fig/log/pull/52
  14. if (!class_exists('\\PHPUnit_Framework_TestCase', true)) {
  15. class_alias('\\PHPUnit\\Framework\\TestCase', '\\PHPUnit_Framework_TestCase');
  16. }