mirror of
https://github.com/ramsey/uuid.git
synced 2026-06-14 15:56:48 +03:00
22 lines
409 B
PHP
22 lines
409 B
PHP
<?php
|
|
|
|
/**
|
|
* Test bootstrap
|
|
*
|
|
* @codingStandardsIgnoreFile
|
|
*/
|
|
|
|
error_reporting(E_ALL & ~E_DEPRECATED);
|
|
|
|
use AspectMock\Kernel;
|
|
|
|
require_once __DIR__ . '/../vendor/autoload.php'; // composer autoload
|
|
require_once __DIR__ . '/phpstan-bootstrap.php';
|
|
|
|
$kernel = Kernel::getInstance();
|
|
$kernel->init([
|
|
'debug' => true,
|
|
'cacheDir' => sys_get_temp_dir(),
|
|
'includePaths' => [__DIR__ . '/../src']
|
|
]);
|