Skip to content

Commit

Permalink
update mongo and mail config
Browse files Browse the repository at this point in the history
  • Loading branch information
cmosh committed Jul 25, 2017
1 parent 52a8439 commit 3defa3b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@

'key' => env('APP_KEY', 'SomeRandomString'),

'cipher' => MCRYPT_RIJNDAEL_128,
'cipher' => 'AES-256-CBC',

/*
|--------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion config/database.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
'username' => env('DB_USERNAME', 'mnch'),
'password' => env('DB_PASSWORD', 'mnch'),
'options' => [
'db' => 'mnch' // sets the authentication database required by mongo 3
'database' => 'mnch' // sets the authentication database required by mongo 3
]
],

Expand Down
6 changes: 3 additions & 3 deletions config/mail.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
|
*/

'from' => ['address' => 'kenyamnch@gmail.com', 'name' => 'MNCH_noreply'],
'from' => ['address' => env('MAIL_ADDRESS'), 'name' => 'MNCH_noreply'],

/*
|--------------------------------------------------------------------------
Expand All @@ -83,7 +83,7 @@
|
*/

'username' => 'kenyamnch@gmail.com',
'username' => env('MAIL_ADDRESS'),

/*
|--------------------------------------------------------------------------
Expand All @@ -96,7 +96,7 @@
|
*/

'password' => 'mnchchai',
'password' => env('MAIL_PASSWORD'),

/*
|--------------------------------------------------------------------------
Expand Down

0 comments on commit 3defa3b

Please sign in to comment.