3 define('LARAVEL_START', microtime(true));
4 ini_set('xdebug.max_nesting_level', 120);
7 |--------------------------------------------------------------------------
8 | Register The Composer Auto Loader
9 |--------------------------------------------------------------------------
11 | Composer provides a convenient, automatically generated class loader
12 | for our application. We just need to utilize it! We'll require it
13 | into the script here so that we do not have to worry about the
14 | loading of any our classes "manually". Feels great to relax.
18 require __DIR__.'/../app/helpers.php';
19 require __DIR__.'/../vendor/autoload.php';
22 |--------------------------------------------------------------------------
23 | Include The Compiled Class File
24 |--------------------------------------------------------------------------
26 | To dramatically increase your application's performance, you may use a
27 | compiled class file which contains all of the classes commonly used
28 | by a request. The Artisan "optimize" is used to create this file.
32 $compiledPath = __DIR__.'/cache/compiled.php';
34 if (file_exists($compiledPath)) {
35 require $compiledPath;