mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
408c06a33f
We should be using the class compiler here eventually
16 lines
269 B
PHP
16 lines
269 B
PHP
<?php
|
|
|
|
/*
|
|
* October autoloader
|
|
*/
|
|
require __DIR__ . '/../bootstrap/autoload.php';
|
|
|
|
/*
|
|
* Fallback autoloader
|
|
*/
|
|
October\Rain\Support\ClassLoader::register();
|
|
October\Rain\Support\ClassLoader::addDirectories([
|
|
__DIR__.'/../modules',
|
|
__DIR__.'/../plugins'
|
|
]);
|