|
@@ -1,204 +0,0 @@
|
1
|
|
-<?php
|
2
|
|
-error_reporting(error_reporting() & ~E_DEPRECATED);
|
3
|
|
-return array(
|
4
|
|
-
|
5
|
|
- /*
|
6
|
|
- |--------------------------------------------------------------------------
|
7
|
|
- | Application Debug Mode
|
8
|
|
- |--------------------------------------------------------------------------
|
9
|
|
- |
|
10
|
|
- | When your application is in debug mode, detailed error messages with
|
11
|
|
- | stack traces will be shown on every error that occurs within your
|
12
|
|
- | application. If disabled, a simple generic error page is shown.
|
13
|
|
- |
|
14
|
|
- */
|
15
|
|
-
|
16
|
|
- //'debug' => $_ENV['APP_DEBUG'] ?: false,
|
17
|
|
-
|
18
|
|
- 'debug' => true,
|
19
|
|
- /*
|
20
|
|
- |--------------------------------------------------------------------------
|
21
|
|
- | Application URL
|
22
|
|
- |--------------------------------------------------------------------------
|
23
|
|
- |
|
24
|
|
- | This URL is used by the console to properly generate URLs when using
|
25
|
|
- | the Artisan command line tool. You should set this to the root of
|
26
|
|
- | your application so that it is used when running Artisan tasks.
|
27
|
|
- |
|
28
|
|
- */ //$_ENV['APP_URL'] ?:
|
29
|
|
-
|
30
|
|
- 'url' => 'https://localhost',
|
31
|
|
-
|
32
|
|
- /*
|
33
|
|
- |--------------------------------------------------------------------------
|
34
|
|
- | Application Timezone
|
35
|
|
- |--------------------------------------------------------------------------
|
36
|
|
- |
|
37
|
|
- | Here you may specify the default timezone for your application, which
|
38
|
|
- | will be used by the PHP date and date-time functions. We have gone
|
39
|
|
- | ahead and set this to a sensible default for you out of the box.
|
40
|
|
- |
|
41
|
|
- */
|
42
|
|
-
|
43
|
|
- 'timezone' => 'America/Puerto_Rico',
|
44
|
|
-
|
45
|
|
- /*
|
46
|
|
- |--------------------------------------------------------------------------
|
47
|
|
- | Application Locale Configuration
|
48
|
|
- |--------------------------------------------------------------------------
|
49
|
|
- |
|
50
|
|
- | The application locale determines the default locale that will be used
|
51
|
|
- | by the translation service provider. You are free to set this value
|
52
|
|
- | to any of the locales which will be supported by the application.
|
53
|
|
- |
|
54
|
|
- */
|
55
|
|
-
|
56
|
|
- 'locale' => 'en',
|
57
|
|
-
|
58
|
|
- /*
|
59
|
|
- |--------------------------------------------------------------------------
|
60
|
|
- | Application Fallback Locale
|
61
|
|
- |--------------------------------------------------------------------------
|
62
|
|
- |
|
63
|
|
- | The fallback locale determines the locale to use when the current one
|
64
|
|
- | is not available. You may change the value to correspond to any of
|
65
|
|
- | the language folders that are provided through your application.
|
66
|
|
- |
|
67
|
|
- */
|
68
|
|
-
|
69
|
|
- 'fallback_locale' => 'en',
|
70
|
|
-
|
71
|
|
- /*
|
72
|
|
- |--------------------------------------------------------------------------
|
73
|
|
- | Encryption Key
|
74
|
|
- |--------------------------------------------------------------------------
|
75
|
|
- |
|
76
|
|
- | This key is used by the Illuminate encrypter service and should be set
|
77
|
|
- | to a random, 32 character string, otherwise these encrypted strings
|
78
|
|
- | will not be safe. Please do this before deploying an application!
|
79
|
|
- |
|
80
|
|
- */
|
81
|
|
-
|
82
|
|
- // 'key' => 'YourSecretKey!!!',
|
83
|
|
- 'key' => 'JozBz0yQBrZ5kEcPvgxch3RR3E3INSGs',
|
84
|
|
-
|
85
|
|
- 'cipher' => MCRYPT_RIJNDAEL_256,
|
86
|
|
-
|
87
|
|
- /*
|
88
|
|
- |--------------------------------------------------------------------------
|
89
|
|
- | Autoloaded Service Providers
|
90
|
|
- |--------------------------------------------------------------------------
|
91
|
|
- |
|
92
|
|
- | The service providers listed here will be automatically loaded on the
|
93
|
|
- | request to your application. Feel free to add your own services to
|
94
|
|
- | this array to grant expanded functionality to your applications.
|
95
|
|
- |
|
96
|
|
- */
|
97
|
|
-
|
98
|
|
- 'providers' => array(
|
99
|
|
-
|
100
|
|
- 'Illuminate\Foundation\Providers\ArtisanServiceProvider',
|
101
|
|
- 'Illuminate\Auth\AuthServiceProvider',
|
102
|
|
- 'Illuminate\Cache\CacheServiceProvider',
|
103
|
|
- 'Illuminate\Session\CommandsServiceProvider',
|
104
|
|
- 'Illuminate\Foundation\Providers\ConsoleSupportServiceProvider',
|
105
|
|
- 'Illuminate\Routing\ControllerServiceProvider',
|
106
|
|
- 'Illuminate\Cookie\CookieServiceProvider',
|
107
|
|
- 'Illuminate\Database\DatabaseServiceProvider',
|
108
|
|
- 'Illuminate\Encryption\EncryptionServiceProvider',
|
109
|
|
- 'Illuminate\Filesystem\FilesystemServiceProvider',
|
110
|
|
- 'Illuminate\Hashing\HashServiceProvider',
|
111
|
|
- 'Illuminate\Html\HtmlServiceProvider',
|
112
|
|
- 'Illuminate\Log\LogServiceProvider',
|
113
|
|
- 'Illuminate\Mail\MailServiceProvider',
|
114
|
|
- 'Illuminate\Database\MigrationServiceProvider',
|
115
|
|
- 'Illuminate\Pagination\PaginationServiceProvider',
|
116
|
|
- 'Illuminate\Queue\QueueServiceProvider',
|
117
|
|
- 'Illuminate\Redis\RedisServiceProvider',
|
118
|
|
- 'Illuminate\Remote\RemoteServiceProvider',
|
119
|
|
- 'Illuminate\Auth\Reminders\ReminderServiceProvider',
|
120
|
|
- 'Illuminate\Database\SeedServiceProvider',
|
121
|
|
- 'Illuminate\Session\SessionServiceProvider',
|
122
|
|
- 'Illuminate\Translation\TranslationServiceProvider',
|
123
|
|
- 'Illuminate\Validation\ValidationServiceProvider',
|
124
|
|
- 'Illuminate\View\ViewServiceProvider',
|
125
|
|
- 'Illuminate\Workbench\WorkbenchServiceProvider',
|
126
|
|
- 'Way\Generators\GeneratorsServiceProvider',
|
127
|
|
- 'Barryvdh\DomPDF\ServiceProvider',
|
128
|
|
- 'Cornford\Backup\Providers\BackupServiceProvider',
|
129
|
|
- 'Zizaco\Entrust\EntrustServiceProvider'
|
130
|
|
-
|
131
|
|
- ),
|
132
|
|
-
|
133
|
|
- /*
|
134
|
|
- |--------------------------------------------------------------------------
|
135
|
|
- | Service Provider Manifest
|
136
|
|
- |--------------------------------------------------------------------------
|
137
|
|
- |
|
138
|
|
- | The service provider manifest is used by Laravel to lazy load service
|
139
|
|
- | providers which are not needed for each request, as well to keep a
|
140
|
|
- | list of all of the services. Here, you may set its storage spot.
|
141
|
|
- |
|
142
|
|
- */
|
143
|
|
-
|
144
|
|
- 'manifest' => storage_path() . '/meta',
|
145
|
|
-
|
146
|
|
- /*
|
147
|
|
- |--------------------------------------------------------------------------
|
148
|
|
- | Class Aliases
|
149
|
|
- |--------------------------------------------------------------------------
|
150
|
|
- |
|
151
|
|
- | This array of class aliases will be registered when this application
|
152
|
|
- | is started. However, feel free to register as many as you wish as
|
153
|
|
- | the aliases are "lazy" loaded so they don't hinder performance.
|
154
|
|
- |
|
155
|
|
- */
|
156
|
|
-
|
157
|
|
- 'aliases' => array(
|
158
|
|
-
|
159
|
|
- 'App' => 'Illuminate\Support\Facades\App',
|
160
|
|
- 'Artisan' => 'Illuminate\Support\Facades\Artisan',
|
161
|
|
- 'Auth' => 'Illuminate\Support\Facades\Auth',
|
162
|
|
- 'Backup' => 'Cornford\Backup\Facades\Backup',
|
163
|
|
- 'Blade' => 'Illuminate\Support\Facades\Blade',
|
164
|
|
- 'Cache' => 'Illuminate\Support\Facades\Cache',
|
165
|
|
- 'ClassLoader' => 'Illuminate\Support\ClassLoader',
|
166
|
|
- 'Config' => 'Illuminate\Support\Facades\Config',
|
167
|
|
- 'Controller' => 'Illuminate\Routing\Controller',
|
168
|
|
- 'Cookie' => 'Illuminate\Support\Facades\Cookie',
|
169
|
|
- 'Crypt' => 'Illuminate\Support\Facades\Crypt',
|
170
|
|
- 'DB' => 'Illuminate\Support\Facades\DB',
|
171
|
|
- 'Eloquent' => 'Illuminate\Database\Eloquent\Model',
|
172
|
|
- 'Event' => 'Illuminate\Support\Facades\Event',
|
173
|
|
- 'File' => 'Illuminate\Support\Facades\File',
|
174
|
|
- 'Form' => 'Illuminate\Support\Facades\Form',
|
175
|
|
- 'Hash' => 'Illuminate\Support\Facades\Hash',
|
176
|
|
- 'HTML' => 'Illuminate\Support\Facades\HTML',
|
177
|
|
- 'Input' => 'Illuminate\Support\Facades\Input',
|
178
|
|
- 'Lang' => 'Illuminate\Support\Facades\Lang',
|
179
|
|
- 'Log' => 'Illuminate\Support\Facades\Log',
|
180
|
|
- 'Mail' => 'Illuminate\Support\Facades\Mail',
|
181
|
|
- 'Paginator' => 'Illuminate\Support\Facades\Paginator',
|
182
|
|
- 'Password' => 'Illuminate\Support\Facades\Password',
|
183
|
|
- 'Queue' => 'Illuminate\Support\Facades\Queue',
|
184
|
|
- 'Redirect' => 'Illuminate\Support\Facades\Redirect',
|
185
|
|
- 'Redis' => 'Illuminate\Support\Facades\Redis',
|
186
|
|
- 'Request' => 'Illuminate\Support\Facades\Request',
|
187
|
|
- 'Response' => 'Illuminate\Support\Facades\Response',
|
188
|
|
- 'Route' => 'Illuminate\Support\Facades\Route',
|
189
|
|
- 'Schema' => 'Illuminate\Support\Facades\Schema',
|
190
|
|
- 'Seeder' => 'Illuminate\Database\Seeder',
|
191
|
|
- 'Session' => 'Illuminate\Support\Facades\Session',
|
192
|
|
- 'SoftDeletingTrait' => 'Illuminate\Database\Eloquent\SoftDeletingTrait',
|
193
|
|
- 'SSH' => 'Illuminate\Support\Facades\SSH',
|
194
|
|
- 'Str' => 'Illuminate\Support\Str',
|
195
|
|
- 'URL' => 'Illuminate\Support\Facades\URL',
|
196
|
|
- 'Validator' => 'Illuminate\Support\Facades\Validator',
|
197
|
|
- 'View' => 'Illuminate\Support\Facades\View',
|
198
|
|
- 'PDF' => 'Barryvdh\DomPDF\Facade',
|
199
|
|
- 'Entrust' => 'Zizaco\Entrust\EntrustFacade'
|
200
|
|
-
|
201
|
|
-
|
202
|
|
- ),
|
203
|
|
-
|
204
|
|
-);
|