Skip to content

Commit

Permalink
Merge 5ac9acd into 7af8ed9
Browse files Browse the repository at this point in the history
  • Loading branch information
DivineOmega committed Jul 3, 2019
2 parents 7af8ed9 + 5ac9acd commit d6aebdb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -17,6 +17,7 @@ Laravel NIST Password Rules implements the following recommendations.
| Dictionary words | The `DictionaryWords` rule checks the password against a list of over 102k dictionary words. |
| Context-specific words, such as the name of the service, the username | The `ContextSpecificWords` rule checks the password does not contain the provided username, and any words defined the configured app name or app URL. |
| Context-specific words, [...] and derivatives thereof | The `DerivativesOfContextSpecificWords` rule checks the password is not too similar to the provided username, and any words defined the configured app name or app URL. |
| Repetitive or sequential characters (e.g. ‘aaaaaa’, ‘1234abcd’) | The `RepetitiveCharacters` and `SequentialCharacters` rules checks if the password contains any repetitive or sequential characters. |

It also provides methods to return validation rules arrays for various
scenarios, such as register, login, and password changes. These arrays can
Expand Down
2 changes: 0 additions & 2 deletions src/ServiceProvider.php
Expand Up @@ -2,8 +2,6 @@

namespace LangleyFoxall\LaravelNISTPasswordRules;

use Illuminate\Support\Facades\Lang;

class ServiceProvider extends \Illuminate\Support\ServiceProvider
{
/**
Expand Down

0 comments on commit d6aebdb

Please sign in to comment.