-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathapp.php
More file actions
120 lines (99 loc) · 4.1 KB
/
Copy pathapp.php
File metadata and controls
120 lines (99 loc) · 4.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<?php
return array(
/*
|--------------------------------------------------------------------------
| Application Debug Mode
|--------------------------------------------------------------------------
|
| When your application is in debug mode, detailed error messages with
| stack traces will be shown on every error that occurs within your
| application. If disabled, a simple generic error page is shown.
|
*/
'debug' => true,
/*
|--------------------------------------------------------------------------
| Application Timezone
|--------------------------------------------------------------------------
|
| Here you may specify the default timezone for your application, which
| will be used by the PHP date and date-time functions. We have gone
| ahead and set this to a sensible default for you out of the box.
|
*/
'timezone' => 'UTC',
/*
|--------------------------------------------------------------------------
| Application Locale Configuration
|--------------------------------------------------------------------------
|
| The application locale determines the default locale that will be used
| by the translation service provider. You are free to set this value
| to any of the locales which will be supported by the application.
|
*/
'locales' => array('en'),
'locale' => 'en',
'fallback_locale' => 'en',
'locale_path' => __DIR__.'/../lang',
/*
|--------------------------------------------------------------------------
| Encryption Key
|--------------------------------------------------------------------------
|
| This key is used by the Illuminate encrypter service and should be set
| to a random, long string, otherwise these encrypted values will not
| be safe. Make sure to change it before deploying any application!
|
*/
'key' => 'YourSecretKey!!!',
/*
|--------------------------------------------------------------------------
| Class Aliases
|--------------------------------------------------------------------------
|
| This array of class aliases will be registered when this application
| is started. However, feel free to register as many as you wish as
| the aliases are "lazy" loaded so they don't hinder performance.
|
*/
'aliases' => array(
'Controller' => 'Illuminate\Routing\Controllers\Controller',
'Eloquent' => 'Illuminate\Database\Eloquent\Model',
),
/*
|--------------------------------------------------------------------------
| Autoloaded Service Providers
|--------------------------------------------------------------------------
|
| The service providers listed here will be automatically loaded on the
| request to your application. Feel free to add your own services to
| this array to grant expanded functionality to your applications.
|
*/
'providers' => array(
'Illuminate\Foundation\Providers\AliasServiceProvider',
'Illuminate\Foundation\Providers\ArtisanServiceProvider',
'Illuminate\Foundation\Providers\AuthServiceProvider',
'Illuminate\Foundation\Providers\CacheServiceProvider',
'Illuminate\Foundation\Providers\ComposerServiceProvider',
'Illuminate\Foundation\Providers\ControllerServiceProvider',
'Illuminate\Foundation\Providers\CookieServiceProvider',
'Illuminate\Foundation\Providers\DatabaseServiceProvider',
'Illuminate\Foundation\Providers\EncrypterServiceProvider',
'Illuminate\Foundation\Providers\EventsServiceProvider',
'Illuminate\Foundation\Providers\FilesystemServiceProvider',
'Illuminate\Foundation\Providers\HashServiceProvider',
'Illuminate\Foundation\Providers\LogServiceProvider',
'Illuminate\Foundation\Providers\MailServiceProvider',
'Illuminate\Foundation\Providers\MigrationServiceProvider',
'Illuminate\Foundation\Providers\PaginationServiceProvider',
'Illuminate\Foundation\Providers\PublisherServiceProvider',
'Illuminate\Foundation\Providers\RedisServiceProvider',
'Illuminate\Foundation\Providers\SeedServiceProvider',
'Illuminate\Foundation\Providers\SessionServiceProvider',
'Illuminate\Foundation\Providers\TranslationServiceProvider',
'Illuminate\Foundation\Providers\ValidatorServiceProvider',
'Illuminate\Foundation\Providers\ViewServiceProvider',
),
);