8 lines
158 B
PHP
8 lines
158 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
ini_set('xdebug.mode=coverage', 'on');
|
|
define('APP_ROOT', __DIR__ . '/..');
|
|
|
|
require_once APP_ROOT . '/vendor/autoload.php';
|