winter/tests/bootstrap.php
Samuel Georges babf8f05a7 Restore autoloader and bootstrapper
There was no real need to change this from what it was
2020-02-27 20:07:42 +11:00

22 lines
363 B
PHP

<?php
/*
* October autoloader
*/
require __DIR__ . '/../bootstrap/autoload.php';
/*
* Fallback autoloader
*/
$loader = new October\Rain\Support\ClassLoader(
new October\Rain\Filesystem\Filesystem,
__DIR__ . '/../',
__DIR__ . '/../storage/framework/classes.php'
);
$loader->register();
$loader->addDirectories([
'modules',
'plugins'
]);