Browse Source

la gallina

parent
commit
b335de089a
1 changed files with 2 additions and 10 deletions
  1. 2
    10
      app/config/app.php

+ 2
- 10
app/config/app.php View File

15
 
15
 
16
 	//'debug' => $_ENV['APP_DEBUG'] ?: false,
16
 	//'debug' => $_ENV['APP_DEBUG'] ?: false,
17
 
17
 
18
-// 	'debug' => true,
19
-	'debug' => false,
18
+	'debug' => true,
20
 	/*
19
 	/*
21
 	|--------------------------------------------------------------------------
20
 	|--------------------------------------------------------------------------
22
 	| Application URL
21
 	| Application URL
81
 	*/
80
 	*/
82
 
81
 
83
 	// 'key' => 'YourSecretKey!!!',
82
 	// 'key' => 'YourSecretKey!!!',
84
-	// 	'key' => 'JozBz0yQBrZ5kEcPvgxch3RR3E3INSGs',
85
-	// 
86
-	// 	'cipher' => MCRYPT_RIJNDAEL_256,
87
 	'key' => '+H!WZJxd5qwb!EHYR8^MLsX@^X6Y?e@+',
83
 	'key' => '+H!WZJxd5qwb!EHYR8^MLsX@^X6Y?e@+',
88
 
84
 
89
 	'cipher' => MCRYPT_RIJNDAEL_128,
85
 	'cipher' => MCRYPT_RIJNDAEL_128,
130
 		'Way\Generators\GeneratorsServiceProvider',
126
 		'Way\Generators\GeneratorsServiceProvider',
131
 		'Barryvdh\DomPDF\ServiceProvider',
127
 		'Barryvdh\DomPDF\ServiceProvider',
132
 		// 'Cornford\Backup\Providers\BackupServiceProvider',
128
 		// 'Cornford\Backup\Providers\BackupServiceProvider',
133
-		'Zizaco\Entrust\EntrustServiceProvider',
134
-		//To be able to use PDF
135
-		//'Thujohn\Pdf\PdfServiceProvider',
129
+		'Zizaco\Entrust\EntrustServiceProvider'
136
 
130
 
137
 	),
131
 	),
138
 
132
 
166
 		'Artisan'           => 'Illuminate\Support\Facades\Artisan',
160
 		'Artisan'           => 'Illuminate\Support\Facades\Artisan',
167
 		'Auth'              => 'Illuminate\Support\Facades\Auth',
161
 		'Auth'              => 'Illuminate\Support\Facades\Auth',
168
 		//'Backup'	        => 'Cornford\Backup\Facades\Backup',
162
 		//'Backup'	        => 'Cornford\Backup\Facades\Backup',
169
-		'Filesystem'        => 'Illuminate\Filesystem\Filesystem',
170
 		'Blade'             => 'Illuminate\Support\Facades\Blade',
163
 		'Blade'             => 'Illuminate\Support\Facades\Blade',
171
 		'Cache'             => 'Illuminate\Support\Facades\Cache',
164
 		'Cache'             => 'Illuminate\Support\Facades\Cache',
172
 		'ClassLoader'       => 'Illuminate\Support\ClassLoader',
165
 		'ClassLoader'       => 'Illuminate\Support\ClassLoader',
203
 		'Validator'         => 'Illuminate\Support\Facades\Validator',
196
 		'Validator'         => 'Illuminate\Support\Facades\Validator',
204
 		'View'              => 'Illuminate\Support\Facades\View',
197
 		'View'              => 'Illuminate\Support\Facades\View',
205
 		'PDF'				=> 'Barryvdh\DomPDF\Facade',
198
 		'PDF'				=> 'Barryvdh\DomPDF\Facade',
206
-		//'PDF' 				=> 'Thujohn\Pdf\PdfFacade',
207
 		'Entrust' => 'Zizaco\Entrust\EntrustFacade'
199
 		'Entrust' => 'Zizaco\Entrust\EntrustFacade'
208
 
200
 
209
 
201