Files
spa-api/bootstrap/paths.php

97 lines
3.0 KiB
PHP
Raw Normal View History

<?php
2014-08-24 14:04:21 -05:00
return [
/*
|--------------------------------------------------------------------------
| 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',
/*
|--------------------------------------------------------------------------
2014-09-27 20:35:07 -05:00
| Base Path
|--------------------------------------------------------------------------
|
2014-09-27 20:35:07 -05: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.
|
*/
2014-09-27 20:35:07 -05:00
'base' => __DIR__.'/..',
/*
2013-02-06 22:04:36 -06:00
|--------------------------------------------------------------------------
2014-09-27 20:35:07 -05:00
| Configuration Path
2013-02-06 22:04:36 -06:00
|--------------------------------------------------------------------------
|
2014-09-27 20:35:07 -05:00
| This path is used by the configuration loader to load the application
| configuration files. In general, you should'nt need to change this
| value; however, you can theoretically change the path from here.
|
*/
2014-09-27 20:35:07 -05:00
'config' => __DIR__.'/../config',
2013-03-26 09:23:41 -05:00
/*
|--------------------------------------------------------------------------
2014-09-27 20:35:07 -05:00
| Database Path
2013-03-26 09:23:41 -05:00
|--------------------------------------------------------------------------
|
2014-09-27 20:35:07 -05:00
| This path is used by the migration generator and migration runner to
| know where to place your fresh database migration classes. You're
| free to modify the path but you probably will not ever need to.
2013-03-26 09:23:41 -05:00
|
*/
2014-09-27 20:35:07 -05:00
'database' => __DIR__.'/../database',
2013-03-26 09:23:41 -05:00
2014-08-11 10:13:20 -05:00
/*
|--------------------------------------------------------------------------
2014-09-27 20:35:07 -05:00
| Language Path
2014-08-11 10:13:20 -05:00
|--------------------------------------------------------------------------
|
2014-09-27 20:35:07 -05:00
| This path is used by the language file loader to load your application
| language files. The purpose of these files is to store your strings
| that are translated into other languages for views, e-mails, etc.
2014-08-11 10:13:20 -05:00
|
*/
'lang' => __DIR__.'/../resources/lang',
2014-09-27 20:35:07 -05:00
/*
|--------------------------------------------------------------------------
| Public Path
|--------------------------------------------------------------------------
|
| 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.
|
*/
'public' => __DIR__.'/../public',
/*
|--------------------------------------------------------------------------
| 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.
|
*/
'storage' => __DIR__.'/../storage',
2014-08-11 10:13:20 -05:00
2014-08-24 14:04:21 -05:00
];