application.php 6.05 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

Colin Viebrock committed
18 19
	/*
	|--------------------------------------------------------------------------
20 21 22
	| Asset URL
	|--------------------------------------------------------------------------
	|
23 24 25
	| The base URL used for your application's asset files. This is useful if
	| you are serving your assets through a different server or a CDN. If it
	| is not set, we'll default to the application URL above.
26 27 28 29 30
	|
	*/

	'asset_url' => '',

31 32 33 34 35 36
	/*
	|--------------------------------------------------------------------------
	| Application Index
	|--------------------------------------------------------------------------
	|
	| If you are including the "index.php" in your URLs, you can ignore this.
37 38
	| 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.
39 40 41 42 43 44 45
	|
	*/

	'index' => 'index.php',

	/*
	|--------------------------------------------------------------------------
Taylor Otwell committed
46
	| Application Key
47 48
	|--------------------------------------------------------------------------
	|
Taylor Otwell committed
49 50
	| This key is used by the encryption and cookie classes to generate secure
	| encrypted strings and hashes. It is extremely important that this key
51 52
	| remain secret and should not be shared with anyone. Make it about 32
	| characters of random gibberish.
53 54 55
	|
	*/

56
	'key' => 'YourSecretKeyGoesHere!',
57

58 59
	/*
	|--------------------------------------------------------------------------
Taylor Otwell committed
60 61 62 63 64 65 66 67 68 69
	| Profiler Toolbar
	|--------------------------------------------------------------------------
	|
	| Laravel includes a beautiful profiler toolbar that gives you a heads
	| up display of the queries and logs performed by your application.
	| This is wonderful for development, but, of course, you should
	| disable the toolbar for production applications..
	|
	*/

70
	'profiler' => false,
Taylor Otwell committed
71 72 73

	/*
	|--------------------------------------------------------------------------
Taylor Otwell committed
74
	| Application Character Encoding
75 76
	|--------------------------------------------------------------------------
	|
77
	| The default character encoding used by your application. This encoding
78 79
	| 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.
80 81 82
	|
	*/

Taylor Otwell committed
83
	'encoding' => 'UTF-8',
84 85 86

	/*
	|--------------------------------------------------------------------------
Taylor Otwell committed
87
	| Application Language
88 89
	|--------------------------------------------------------------------------
	|
Taylor Otwell committed
90 91
	| The default language of your application. This language will be used by
	| Lang library as the default language when doing string localization.
92 93 94
	|
	*/

Taylor Otwell committed
95
	'language' => 'en',
96 97 98 99 100 101

	/*
	|--------------------------------------------------------------------------
	| SSL Link Generation
	|--------------------------------------------------------------------------
	|
102 103 104
	| 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.
105 106
	|
	| For this reason, you may wish to disable the generation of HTTPS links
107 108
	| throughout your application. This option does just that. All attempts
	| to generate HTTPS links will generate regular HTTP links instead.
109 110 111 112 113
	|
	*/

	'ssl' => true,

Taylor Otwell committed
114 115 116 117 118
	/*
	|--------------------------------------------------------------------------
	| Application Timezone
	|--------------------------------------------------------------------------
	|
119
	| The default timezone of your application. The timezone will be used when
120 121
	| Laravel needs a date, such as when writing to a log file or travelling
	| to a distant star at warp speed.
Taylor Otwell committed
122 123 124 125 126 127 128 129 130 131 132
	|
	*/

	'timezone' => 'UTC',

	/*
	|--------------------------------------------------------------------------
	| Class Aliases
	|--------------------------------------------------------------------------
	|
	| Here, you can specify any class aliases that you would like registered
133
	| when Laravel loads. Aliases are lazy-loaded, so feel free to add!
Taylor Otwell committed
134 135 136 137 138 139 140 141
	|
	| 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(
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
		'Auth'       	=> 'Laravel\\Auth',
		'Authenticator' => 'Laravel\\Auth\\Drivers\\Driver',
		'Asset'      	=> 'Laravel\\Asset',
		'Autoloader' 	=> 'Laravel\\Autoloader',
		'Blade'      	=> 'Laravel\\Blade',
		'Bundle'     	=> 'Laravel\\Bundle',
		'Cache'      	=> 'Laravel\\Cache',
		'Config'     	=> 'Laravel\\Config',
		'Controller' 	=> 'Laravel\\Routing\\Controller',
		'Cookie'     	=> 'Laravel\\Cookie',
		'Crypter'    	=> 'Laravel\\Crypter',
		'DB'         	=> 'Laravel\\Database',
		'Eloquent'   	=> 'Laravel\\Database\\Eloquent\\Model',
		'Event'      	=> 'Laravel\\Event',
		'File'       	=> 'Laravel\\File',
		'Filter'     	=> 'Laravel\\Routing\\Filter',
		'Form'       	=> 'Laravel\\Form',
		'Hash'       	=> 'Laravel\\Hash',
		'HTML'       	=> 'Laravel\\HTML',
		'Input'      	=> 'Laravel\\Input',
		'IoC'        	=> 'Laravel\\IoC',
		'Lang'       	=> 'Laravel\\Lang',
		'Log'        	=> 'Laravel\\Log',
		'Memcached'  	=> 'Laravel\\Memcached',
		'Paginator'  	=> 'Laravel\\Paginator',
		'Profiler'  	=> 'Laravel\\Profiling\\Profiler',
		'URL'        	=> 'Laravel\\URL',
		'Redirect'   	=> 'Laravel\\Redirect',
		'Redis'      	=> 'Laravel\\Redis',
		'Request'    	=> 'Laravel\\Request',
		'Response'   	=> 'Laravel\\Response',
		'Route'      	=> 'Laravel\\Routing\\Route',
		'Router'     	=> 'Laravel\\Routing\\Router',
		'Schema'     	=> 'Laravel\\Database\\Schema',
		'Section'    	=> 'Laravel\\Section',
		'Session'    	=> 'Laravel\\Session',
		'Str'        	=> 'Laravel\\Str',
		'Task'       	=> 'Laravel\\CLI\\Tasks\\Task',
		'URI'        	=> 'Laravel\\URI',
		'Validator'  	=> 'Laravel\\Validator',
		'View'       	=> 'Laravel\\View',
Taylor Otwell committed
183 184
	),

Dayle Rees committed
185
);