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