123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- define('LARAVEL_START', microtime(true));
- require __DIR__.'/../vendor/autoload.php';
- require __DIR__.'/../app/Libs/functions/common.php';
- require __DIR__.'/../app/Libs/functions/log_helper.php';
- require __DIR__.'/../app/Libs/functions/Helpers.php';
- require __DIR__.'/../vendor/league/flysystem/src/Config.php';
- $compiledPath = __DIR__.'/cache/compiled.php';
- if (file_exists($compiledPath)) {
- require $compiledPath;
- }
|