-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from DivineOmega/feature/bump-nist-ver
Bump NIST passwords package version
- Loading branch information
Showing
6 changed files
with
55 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
/** | ||
* PhpStorm Meta file, to provide autocomplete information for PhpStorm | ||
* Generated on 2019-07-05 11:28:10. | ||
* Generated on 2019-07-05 14:46:12. | ||
* | ||
* @author Barry vd. Heuvel <[email protected]> | ||
* @see https://github.com/barryvdh/laravel-ide-helper | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
10 changes: 10 additions & 0 deletions
10
resources/lang/vendor/laravel-nist-password-rules/en/validation.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
|
||
return [ | ||
'can-not-contain-word' => 'The :attribute can not contain the word \':word\'.', | ||
'can-not-be-similar-to-word' => 'The :attribute can not be similar to the word \':word\'.', | ||
'found-in-data-breach' => 'The :attribute was found in a third party data breach, and can not be used.', | ||
'can-not-be-dictionary-word' => 'The :attribute can not be a dictionary word.', | ||
'can-not-be-repetitive-characters' => 'The :attribute can not have repetitive characters of 3 or more.', | ||
'can-not-be-sequential-characters' => 'The :attribute can not have sequential characters of 3 or more.', | ||
]; |