Add option for users to change password hashing algorithm in their .env file

This commit is contained in:
DariusIII
2018-12-28 13:10:14 +01:00
parent ff801e0dee
commit 32e950f899
3 changed files with 3 additions and 1 deletions
+1
View File
@@ -37,6 +37,7 @@ APP_URL=
APP_TZ=
APP_KEY=
LOG_CHANNEL=stack
PASSWORD_HASH=argon
BROADCAST_DRIVER=log
CACHE_DRIVER=file
+1
View File
@@ -1,4 +1,5 @@
2018-12-28 DariusIII
* Chg: Add option for users to change password hashing algorithm in their .env file
* Chg: Add new line to end of messages for found movie names from sources used
* Chg: Update voku/simple_html_dom to version 4.1.10
* Chg: Update voku/simple_html_dom to version 4.1.8
+1 -1
View File
@@ -13,7 +13,7 @@ return [
| Supported: "bcrypt", "argon", "argon2id"
|
*/
'driver' => 'argon',
'driver' => env('PASSWORD_HASH', 'argon'),
/*
|--------------------------------------------------------------------------
| Bcrypt Options