server/src/config/compile.php
changeset 1 01a844d292ac
child 2 00e2916104fe
equal deleted inserted replaced
0:279124b91971 1:01a844d292ac
       
     1 <?php
       
     2 
       
     3 return [
       
     4 
       
     5 	/*
       
     6 	|--------------------------------------------------------------------------
       
     7 	| Additional Compiled Classes
       
     8 	|--------------------------------------------------------------------------
       
     9 	|
       
    10 	| Here you may specify additional classes to include in the compiled file
       
    11 	| generated by the `artisan optimize` command. These should be classes
       
    12 	| that are included on basically every request into the application.
       
    13 	|
       
    14 	*/
       
    15 
       
    16 	'files' => [
       
    17 
       
    18 		realpath(__DIR__.'/../app/Providers/AppServiceProvider.php'),
       
    19 		realpath(__DIR__.'/../app/Providers/BusServiceProvider.php'),
       
    20 		realpath(__DIR__.'/../app/Providers/ConfigServiceProvider.php'),
       
    21 		realpath(__DIR__.'/../app/Providers/EventServiceProvider.php'),
       
    22 		realpath(__DIR__.'/../app/Providers/RouteServiceProvider.php'),
       
    23 
       
    24 	],
       
    25 
       
    26 	/*
       
    27 	|--------------------------------------------------------------------------
       
    28 	| Compiled File Providers
       
    29 	|--------------------------------------------------------------------------
       
    30 	|
       
    31 	| Here you may list service providers which define a "compiles" function
       
    32 	| that returns additional files that should be compiled, providing an
       
    33 	| easy way to get common files from any packages you are utilizing.
       
    34 	|
       
    35 	*/
       
    36 
       
    37 	'providers' => [
       
    38 		//
       
    39 	],
       
    40 
       
    41 ];