You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
373 B
11 lines
373 B
<?php
|
|
|
|
require_once __DIR__ . '/../src/functions.php';
|
|
|
|
spl_autoload_register(function($class) {
|
|
if (strpos($class, 'FastRoute\\') === 0) {
|
|
$dir = strcasecmp(substr($class, -4), 'Test') ? 'src/' : 'test/';
|
|
$name = substr($class, strlen('FastRoute'));
|
|
require __DIR__ . '/../' . $dir . strtr($name, '\\', DIRECTORY_SEPARATOR) . '.php';
|
|
}
|
|
});
|