Setup some stuff for config caching.

This commit is contained in:
Taylor Otwell 2014-12-23 10:51:14 -06:00
parent 49cbb23ac5
commit 5ce23f1859
3 changed files with 8 additions and 5 deletions

View File

@ -15,9 +15,9 @@
'files' => [ 'files' => [
__DIR__.'/../app/Providers/AppServiceProvider.php', realpath(__DIR__.'/../app/Providers/AppServiceProvider.php'),
__DIR__.'/../app/Providers/EventServiceProvider.php', realpath(__DIR__.'/../app/Providers/EventServiceProvider.php'),
__DIR__.'/../app/Providers/RouteServiceProvider.php', realpath(__DIR__.'/../app/Providers/RouteServiceProvider.php'),
], ],

View File

@ -13,7 +13,9 @@
| |
*/ */
'paths' => [base_path('resources/templates')], 'paths' => [
realpath(base_path('resources/templates'))
],
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
@ -26,6 +28,6 @@
| |
*/ */
'compiled' => storage_path().'/framework/views', 'compiled' => realpath(storage_path().'/framework/views'),
]; ];

View File

@ -1,3 +1,4 @@
config.php
routes.php routes.php
compiled.php compiled.php
services.json services.json