Files
php-uuid/tests/bootstrap.php
T
2021-09-23 13:58:48 -05:00

19 lines
434 B
PHP

<?php
// @codingStandardsIgnoreFile
error_reporting(E_ALL & ~E_DEPRECATED);
use AspectMock\Kernel;
require_once __DIR__ . '/../vendor/autoload.php'; // composer autoload
require_once __DIR__ . '/phpstan-bootstrap.php';
if (PHP_MAJOR_VERSION < 8) {
$kernel = Kernel::getInstance();
$kernel->init([
'debug' => true,
'cacheDir' => sys_get_temp_dir(),
'includePaths' => [__DIR__ . '/../src']
]);
}