Working on the default app structure.

This commit is contained in:
Taylor Otwell
2014-08-18 22:46:16 -05:00
parent a5f4e74889
commit 9aae50e501
33 changed files with 33 additions and 21 deletions

43
config/compile.php Normal file
View File

@@ -0,0 +1,43 @@
<?php
return array(
/*
|--------------------------------------------------------------------------
| Additional Compiled Classes
|--------------------------------------------------------------------------
|
| Here you may specify additional classes to include in the compiled file
| generated by the `artisan optimize` command. These should be classes
| that are included on basically every request into the application.
|
*/
'files' => array(
__DIR__.'/../providers/AppServiceProvider.php',
__DIR__.'/../providers/ArtisanServiceProvider.php',
__DIR__.'/../providers/ErrorServiceProvider.php',
__DIR__.'/../providers/EventServiceProvider.php',
__DIR__.'/../providers/FilterServiceProvider.php',
__DIR__.'/../providers/LogServiceProvider.php',
__DIR__.'/../providers/RouteServiceProvider.php',
),
/*
|--------------------------------------------------------------------------
| Compiled File Providers
|--------------------------------------------------------------------------
|
| Here you may list service providers which define a "compiles" function
| that returns additional files that should be compiled, providing an
| easy way to get common files from any packages you are utilizing.
|
*/
'providers' => array(
//
),
);