bootstrap.php 339 B

12345678910111213
  1. <?php
  2. require_once __DIR__ . '/../../vendor/autoload.php';
  3. if (!class_exists('PHPUnit_Framework_TestCase') && version_compare(phpversion(), '7.1') >= 0) {
  4. class PHPUnit_Framework_TestCase extends PHPUnit\Framework\TestCase
  5. {
  6. }
  7. define('HTML2PDF_PHPUNIT_VERSION', 9);
  8. } else {
  9. define('HTML2PDF_PHPUNIT_VERSION', 5);
  10. }