Skip to content

Commit

Permalink
Master synchronization
Browse files Browse the repository at this point in the history
  • Loading branch information
bestmomo committed Jan 3, 2015
1 parent d114341 commit 30e115a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
|
*/

'key' => env('APP_KEY') ?: 'YourSecretKey!!!',
'key' => env('APP_KEY', 'YourSecretKey!!!'),

'cipher' => MCRYPT_RIJNDAEL_128,

Expand Down Expand Up @@ -144,7 +144,7 @@
'App\Providers\EventServiceProvider',
'App\Providers\RouteServiceProvider',
'App\Services\Html\HtmlServiceProvider',

],

/*
Expand Down
24 changes: 12 additions & 12 deletions config/database.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,32 +54,32 @@

'mysql' => [
'driver' => 'mysql',
'host' => env('DB_HOST') ?: 'localhost',
'database' => env('DB_DATABASE') ?: 'laravel_base',
'username' => env('DB_USERNAME') ?: 'root',
'password' => env('DB_PASSWORD') ?: '',
'host' => env('DB_HOST', 'localhost'),
'database' => env('DB_DATABASE', 'laravel_base'),
'username' => env('DB_USERNAME', 'root'),
'password' => env('DB_PASSWORD', ''),
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
],

'pgsql' => [
'driver' => 'pgsql',
'host' => env('DB_HOST') ?: 'localhost',
'database' => env('DB_DATABASE') ?: 'forge',
'username' => env('DB_USERNAME') ?: 'forge',
'password' => env('DB_PASSWORD') ?: '',
'host' => env('DB_HOST', 'localhost'),
'database' => env('DB_DATABASE', 'forge'),
'username' => env('DB_USERNAME', 'forge'),
'password' => env('DB_PASSWORD', ''),
'charset' => 'utf8',
'prefix' => '',
'schema' => 'public',
],

'sqlsrv' => [
'driver' => 'sqlsrv',
'host' => env('DB_HOST') ?: 'localhost',
'database' => env('DB_DATABASE') ?: 'forge',
'username' => env('DB_USERNAME') ?: 'forge',
'password' => env('DB_PASSWORD') ?: '',
'host' => env('DB_HOST', 'localhost'),
'database' => env('DB_DATABASE', 'forge'),
'username' => env('DB_USERNAME', 'forge'),
'password' => env('DB_PASSWORD', ''),
'prefix' => '',
],

Expand Down

0 comments on commit 30e115a

Please sign in to comment.