application.php 5.14 KB
Newer Older
1 2 3 4 5 6 7 8 9
<?php

return array(

	/*
	|--------------------------------------------------------------------------
	| Application URL
	|--------------------------------------------------------------------------
	|
10
	| The URL used to access your application without a trailing slash. The URL
ladea committed
11
	| does not have to be set. If it isn't we'll try our best to guess the URL
12
	| of your application.
13 14 15
	|
	*/

16
	'url' => '',
17 18 19 20 21 22 23

	/*
	|--------------------------------------------------------------------------
	| Application Index
	|--------------------------------------------------------------------------
	|
	| If you are including the "index.php" in your URLs, you can ignore this.
24 25
	| However, if you are using mod_rewrite to get cleaner URLs, just set
	| this option to an empty string and we'll take care of the rest.
26 27 28 29 30 31 32
	|
	*/

	'index' => 'index.php',

	/*
	|--------------------------------------------------------------------------
Taylor Otwell committed
33
	| Application Key
34 35
	|--------------------------------------------------------------------------
	|
Taylor Otwell committed
36 37
	| This key is used by the encryption and cookie classes to generate secure
	| encrypted strings and hashes. It is extremely important that this key
38 39
	| remain secret and should not be shared with anyone. Make it about 32
	| characters of random gibberish.
40
	|
41 42 43 44
	| The "auto_key" option tells Laravel to automatically set this key value
	| if one has not already been set. This is generally done on the first
	| request to the Laravel splash screen.
	|
45 46
	*/

47
	'key' => 'YourSecretKeyGoesHere!',
48

49 50
	/*
	|--------------------------------------------------------------------------
Taylor Otwell committed
51
	| Application Character Encoding
52 53
	|--------------------------------------------------------------------------
	|
54
	| The default character encoding used by your application. This encoding
55 56
	| will be used by the Str, Text, Form, and any other classes that need
	| to know what type of encoding to use for your awesome application.
57 58 59
	|
	*/

Taylor Otwell committed
60
	'encoding' => 'UTF-8',
61 62 63

	/*
	|--------------------------------------------------------------------------
Taylor Otwell committed
64
	| Application Language
65 66
	|--------------------------------------------------------------------------
	|
Taylor Otwell committed
67 68
	| The default language of your application. This language will be used by
	| Lang library as the default language when doing string localization.
69 70 71
	|
	*/

Taylor Otwell committed
72
	'language' => 'en',
73 74 75 76 77 78

	/*
	|--------------------------------------------------------------------------
	| SSL Link Generation
	|--------------------------------------------------------------------------
	|
79 80 81
	| Many sites use SSL to protect their users data. However, you may not be
	| able to use SSL on your development machine, meaning all HTTPS will be
	| broken during development.
82 83
	|
	| For this reason, you may wish to disable the generation of HTTPS links
84 85
	| throughout your application. This option does just that. All attempts
	| to generate HTTPS links will generate regular HTTP links instead.
86 87 88 89 90
	|
	*/

	'ssl' => true,

Taylor Otwell committed
91 92 93 94 95
	/*
	|--------------------------------------------------------------------------
	| Application Timezone
	|--------------------------------------------------------------------------
	|
96
	| The default timezone of your application. The timezone will be used when
97 98
	| Laravel needs a date, such as when writing to a log file or travelling
	| to a distant star at warp speed.
Taylor Otwell committed
99 100 101 102 103 104 105 106 107 108 109
	|
	*/

	'timezone' => 'UTC',

	/*
	|--------------------------------------------------------------------------
	| Class Aliases
	|--------------------------------------------------------------------------
	|
	| Here, you can specify any class aliases that you would like registered
110
	| when Laravel loads. Aliases are lazy-loaded, so feel free to add!
Taylor Otwell committed
111 112 113 114 115 116 117 118
	|
	| Aliases make it more convenient to use namespaced classes. Instead of
	| referring to the class using its full namespace, you may simply use
	| the alias defined here.
	|
	*/

	'aliases' => array(
119
		'Auth'       => 'Laravel\\Auth',
120
		'Asset'      => 'Laravel\\Asset',
121
		'Autoloader' => 'Laravel\\Autoloader',
122 123
		'Bundle'     => 'Laravel\\Bundle',
		'Cache'      => 'Laravel\\Cache',
Taylor Otwell committed
124
		'Config'     => 'Laravel\\Config',
125
		'Controller' => 'Laravel\\Routing\\Controller',
Taylor Otwell committed
126
		'Cookie'     => 'Laravel\\Cookie',
127
		'Crypter'    => 'Laravel\\Crypter',
128 129
		'DB'         => 'Laravel\\Database',
		'Event'      => 'Laravel\\Event',
Taylor Otwell committed
130
		'File'       => 'Laravel\\File',
131
		'Filter'     => 'Laravel\\Routing\\Filter',
Taylor Otwell committed
132
		'Form'       => 'Laravel\\Form',
133
		'Hash'       => 'Laravel\\Hash',
Taylor Otwell committed
134
		'HTML'       => 'Laravel\\HTML',
135
		'Input'      => 'Laravel\\Input',
Taylor Otwell committed
136 137
		'IoC'        => 'Laravel\\IoC',
		'Lang'       => 'Laravel\\Lang',
138
		'Log'        => 'Laravel\\Log',
139
		'Memcached'  => 'Laravel\\Memcached',
140
		'Paginator'  => 'Laravel\\Paginator',
Taylor Otwell committed
141 142
		'URL'        => 'Laravel\\URL',
		'Redirect'   => 'Laravel\\Redirect',
143
		'Redis'      => 'Laravel\\Redis',
144
		'Request'    => 'Laravel\\Request',
Taylor Otwell committed
145
		'Response'   => 'Laravel\\Response',
146
		'Route'      => 'Laravel\\Routing\\Route',
147 148
		'Router'     => 'Laravel\\Routing\\Router',
		'Schema'     => 'Laravel\\Database\\Schema',
149
		'Section'    => 'Laravel\\Section',
150
		'Session'    => 'Laravel\\Session',
Taylor Otwell committed
151
		'Str'        => 'Laravel\\Str',
152 153
		'Task'       => 'Laravel\\CLI\\Tasks\\Task',
		'URI'        => 'Laravel\\URI',
154
		'Validator'  => 'Laravel\\Validator',
Taylor Otwell committed
155 156 157
		'View'       => 'Laravel\\View',
	),

158
);