Selaa lähdekoodia

Delete 'app/config/app.php'

Este archivo no debe estar en el repo
Carlos J Corrada Bravo 1 vuosi sitten
vanhempi
commit
b3197790fe
1 muutettua tiedostoa jossa 0 lisäystä ja 201 poistoa
  1. 0
    201
      app/config/app.php

+ 0
- 201
app/config/app.php Näytä tiedosto

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