├── .styleci.yml ├── LICENSE.md ├── README.md ├── composer.json ├── resources └── lang │ └── en │ └── messages.php └── src ├── Exceptions ├── DomainWhitelistException.php ├── NumberParityException.php └── StringContainsException.php ├── Rule.php ├── Rules ├── Base64EncodedString.php ├── Coordinate.php ├── DomainRestrictedEmail.php ├── ExcludesHtml.php ├── HexColourCode.php ├── Honorific.php ├── IncludesHtml.php ├── NoWhitespace.php ├── NumberParity.php ├── StringContains.php ├── StrongPassword.php ├── TitleCase.php ├── UKMobilePhone.php └── Uppercase.php ├── Support └── Honorifics.php └── ValidationRulesServiceProvider.php /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: laravel 2 | 3 | disabled: 4 | - alpha_ordered_imports 5 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f9webltd/laravel-validation-rules/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f9webltd/laravel-validation-rules/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f9webltd/laravel-validation-rules/HEAD/composer.json -------------------------------------------------------------------------------- /resources/lang/en/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f9webltd/laravel-validation-rules/HEAD/resources/lang/en/messages.php -------------------------------------------------------------------------------- /src/Exceptions/DomainWhitelistException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f9webltd/laravel-validation-rules/HEAD/src/Exceptions/DomainWhitelistException.php -------------------------------------------------------------------------------- /src/Exceptions/NumberParityException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f9webltd/laravel-validation-rules/HEAD/src/Exceptions/NumberParityException.php -------------------------------------------------------------------------------- /src/Exceptions/StringContainsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f9webltd/laravel-validation-rules/HEAD/src/Exceptions/StringContainsException.php -------------------------------------------------------------------------------- /src/Rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f9webltd/laravel-validation-rules/HEAD/src/Rule.php -------------------------------------------------------------------------------- /src/Rules/Base64EncodedString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f9webltd/laravel-validation-rules/HEAD/src/Rules/Base64EncodedString.php -------------------------------------------------------------------------------- /src/Rules/Coordinate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f9webltd/laravel-validation-rules/HEAD/src/Rules/Coordinate.php -------------------------------------------------------------------------------- /src/Rules/DomainRestrictedEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f9webltd/laravel-validation-rules/HEAD/src/Rules/DomainRestrictedEmail.php -------------------------------------------------------------------------------- /src/Rules/ExcludesHtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f9webltd/laravel-validation-rules/HEAD/src/Rules/ExcludesHtml.php -------------------------------------------------------------------------------- /src/Rules/HexColourCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f9webltd/laravel-validation-rules/HEAD/src/Rules/HexColourCode.php -------------------------------------------------------------------------------- /src/Rules/Honorific.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f9webltd/laravel-validation-rules/HEAD/src/Rules/Honorific.php -------------------------------------------------------------------------------- /src/Rules/IncludesHtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f9webltd/laravel-validation-rules/HEAD/src/Rules/IncludesHtml.php -------------------------------------------------------------------------------- /src/Rules/NoWhitespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f9webltd/laravel-validation-rules/HEAD/src/Rules/NoWhitespace.php -------------------------------------------------------------------------------- /src/Rules/NumberParity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f9webltd/laravel-validation-rules/HEAD/src/Rules/NumberParity.php -------------------------------------------------------------------------------- /src/Rules/StringContains.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f9webltd/laravel-validation-rules/HEAD/src/Rules/StringContains.php -------------------------------------------------------------------------------- /src/Rules/StrongPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f9webltd/laravel-validation-rules/HEAD/src/Rules/StrongPassword.php -------------------------------------------------------------------------------- /src/Rules/TitleCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f9webltd/laravel-validation-rules/HEAD/src/Rules/TitleCase.php -------------------------------------------------------------------------------- /src/Rules/UKMobilePhone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f9webltd/laravel-validation-rules/HEAD/src/Rules/UKMobilePhone.php -------------------------------------------------------------------------------- /src/Rules/Uppercase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f9webltd/laravel-validation-rules/HEAD/src/Rules/Uppercase.php -------------------------------------------------------------------------------- /src/Support/Honorifics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f9webltd/laravel-validation-rules/HEAD/src/Support/Honorifics.php -------------------------------------------------------------------------------- /src/ValidationRulesServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f9webltd/laravel-validation-rules/HEAD/src/ValidationRulesServiceProvider.php --------------------------------------------------------------------------------