2013-02-07 10:58:28 +11:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
return array(
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Application Path
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
| Here we just defined the path to the application directory. Most likely
|
|
|
|
|
| you will never need to change this value as the default setup should
|
|
|
|
|
| work perfectly fine for the vast majority of all our applications.
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
'app' => __DIR__.'/../app',
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Public Path
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
2013-02-06 22:04:36 -06:00
|
|
|
| The public path contains the assets for your web application, such as
|
|
|
|
|
| your JavaScript and CSS files, and also contains the primary entry
|
|
|
|
|
| point for web requests into these applications from the outside.
|
2013-02-07 10:58:28 +11:00
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
'public' => __DIR__.'/../public',
|
|
|
|
|
|
|
|
|
|
/*
|
2013-02-06 22:04:36 -06:00
|
|
|
|--------------------------------------------------------------------------
|
2013-02-07 08:53:07 -06:00
|
|
|
| Base Path
|
2013-02-06 22:04:36 -06:00
|
|
|
|--------------------------------------------------------------------------
|
2013-02-07 10:58:28 +11:00
|
|
|
|
|
2013-02-06 22:04:36 -06:00
|
|
|
| The base path is the root of the Laravel installation. Most likely you
|
|
|
|
|
| will not need to change this value. But, if for some wild reason it
|
|
|
|
|
| is necessary you will do so here, just proceed with some caution.
|
2013-02-07 10:58:28 +11:00
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
'base' => __DIR__.'/..',
|
|
|
|
|
|
2013-03-26 09:23:41 -05:00
|
|
|
/*
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Storage Path
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
| The storage path is used by Laravel to store cached Blade views, logs
|
|
|
|
|
| and other pieces of information. You may modify the path here when
|
|
|
|
|
| you want to change the location of this directory for your apps.
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
2014-07-26 22:00:01 -05:00
|
|
|
'storage' => __DIR__.'/../storage',
|
2013-03-26 09:23:41 -05:00
|
|
|
|
2013-02-07 10:58:28 +11:00
|
|
|
);
|