43 lines
1.1 KiB
PHP
43 lines
1.1 KiB
PHP
<?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
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| We understand that not all hosting environments allow flexibility with
|
|
| public paths. That's why we allow you to change where your public path
|
|
| is below.
|
|
|
|
|
*/
|
|
|
|
'public' => __DIR__.'/../public',
|
|
|
|
/*
|
|
|-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
|
|
| Base Path
|
|
|-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
|
|
|
|
|
| You probably shouldn't be editing this.
|
|
|
|
|
*/
|
|
|
|
'base' => __DIR__.'/..',
|
|
|
|
);
|