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