diff --git a/README.md b/README.md index cd749cb..75d1556 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/src/ServiceProvider.php b/src/ServiceProvider.php index 6f92b30..343f8ca 100644 --- a/src/ServiceProvider.php +++ b/src/ServiceProvider.php @@ -2,8 +2,6 @@ namespace LangleyFoxall\LaravelNISTPasswordRules; -use Illuminate\Support\Facades\Lang; - class ServiceProvider extends \Illuminate\Support\ServiceProvider { /**