Files
spa-api/application/config/application.php

79 lines
2.1 KiB
PHP
Raw Normal View History

2011-06-08 23:45:08 -05:00
<?php
return array(
/*
|--------------------------------------------------------------------------
| Application URL
|--------------------------------------------------------------------------
|
2011-06-16 07:24:46 -07:00
| The URL used to access your application. No trailing slash.
2011-06-08 23:45:08 -05:00
|
*/
2011-06-16 07:24:46 -07:00
'url' => 'http://localhost',
/*
|--------------------------------------------------------------------------
| Application Index
|--------------------------------------------------------------------------
|
| If you are including the "index.php" in your URLs, you can ignore this.
|
| However, if you are using mod_rewrite or something similar to get
| cleaner URLs, set this option to an empty string.
2011-06-08 23:45:08 -05:00
|
*/
'index' => 'index.php',
2011-06-08 23:45:08 -05:00
/*
|--------------------------------------------------------------------------
| Application Language
|--------------------------------------------------------------------------
|
| The default language of your application. This language will be used by
2011-07-28 13:42:41 -05:00
| Lang library as the default language when doing string localization.
2011-06-08 23:45:08 -05:00
|
*/
'language' => 'en',
/*
|--------------------------------------------------------------------------
| Application Character Encoding
|--------------------------------------------------------------------------
|
2011-07-28 13:42:41 -05:00
| The default character encoding used by your application. This is the
| character encoding that will be used by the Str, Text, and Form classes.
|
*/
'encoding' => 'UTF-8',
2011-06-08 23:45:08 -05:00
/*
|--------------------------------------------------------------------------
| Application Timezone
|--------------------------------------------------------------------------
|
| The default timezone of your application. This timezone will be used when
| Laravel needs a date, such as when writing to a log file.
|
*/
'timezone' => 'UTC',
/*
|--------------------------------------------------------------------------
| Application Key
|--------------------------------------------------------------------------
|
| Your application key should be a 32 character string that is totally
| random and secret. This key is used by the encryption class to generate
| secure, encrypted strings.
|
*/
'key' => '',
);