Skip to content

Commit

Permalink
Undo default pw requirements change
Browse files Browse the repository at this point in the history
  • Loading branch information
zerocrates committed Apr 9, 2019
1 parent 3fde0a4 commit 9efa477
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions application/config/module.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
return [
'password' => [
'min_length' => 6,
'min_lowercase' => 1,
'min_uppercase' => 1,
'min_number' => 1,
'min_symbol' => 1,
'min_lowercase' => null,
'min_uppercase' => null,
'min_number' => null,
'min_symbol' => null,
'symbol_list' => '`~!@#$%^&*()-=_+[]\{}|;:",./<>?\'',
],
'session' => [
Expand Down

0 comments on commit 9efa477

Please sign in to comment.