Browse Source

Merge branch 'principal' of https://git.ccom.uprrp.edu/CDCC/OLAS into principal

En verdad no se
parent
commit
cc569440bc
1 changed files with 0 additions and 205 deletions
  1. 0
    205
      app/config/app.php

+ 0
- 205
app/config/app.php View File

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