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

View File

@@ -27,9 +27,11 @@ require __DIR__.'/../vendor/autoload.php';
|
*/
if (file_exists($compiled = __DIR__.'/compiled.php'))
$compiledPath = __DIR__.'/../storage/meta/compiled.php';
if (file_exists($compiledPath))
{
require $compiled;
require $compiledPath;
}
/*

View File

@@ -65,12 +65,12 @@ return array(
|
*/
'commands' => __DIR__.'/../app/console',
'config' => __DIR__.'/../app/config',
'controllers' => __DIR__.'/../app/http/controllers',
'database' => __DIR__.'/../app/database',
'filters' => __DIR__.'/../app/http/filters',
'lang' => __DIR__.'/../app/lang',
'requests' => __DIR__.'/../app/http/requests',
'commands' => __DIR__.'/../app/Console',
'config' => __DIR__.'/../config',
'controllers' => __DIR__.'/../app/Http/Controllers',
'database' => __DIR__.'/../database',
'filters' => __DIR__.'/../app/Http/Filters',
'lang' => __DIR__.'/../lang',
'requests' => __DIR__.'/../app/Http/Requests',
);