123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?php
-
- define('LARAVEL_START', microtime(true));
-
-
-
- require __DIR__.'/../vendor/autoload.php';
-
-
-
- if (file_exists($compiled = __DIR__.'/compiled.php'))
- {
- require $compiled;
- }
-
-
-
- Patchwork\Utf8\Bootup::initMbstring();
-
-
-
- Illuminate\Support\ClassLoader::register();
-
-
-
- if (is_dir($workbench = __DIR__.'/../workbench'))
- {
- Illuminate\Workbench\Starter::start($workbench);
- }
|