LaravelPackages.net
Acme Inc.
Toggle sidebar
dilneiss/laravel-password-exposed-validation-rule

Laravel validation rule that checks if a password has been exposed in a data breach

1.072
0
3.1
About dilneiss/laravel-password-exposed-validation-rule

dilneiss/laravel-password-exposed-validation-rule is a Laravel package for laravel validation rule that checks if a password has been exposed in a data breach. It currently has 0 GitHub stars and 1.072 downloads on Packagist (latest version 3.1). Install it with composer require dilneiss/laravel-password-exposed-validation-rule. Discover more Laravel packages by dilneiss or browse all Laravel packages to compare alternatives.

Last updated

🔒 Laravel Password Exposed Validation Rule

This package provides a Laravel validation rule that checks if a password has been exposed in a data breach. It uses the haveibeenpwned.com passwords API via the divineomega/password_exposed library.

Travis CI Coverage Status StyleCI

Installation

To install, just run the following Composer command.

composer require divineomega/laravel-password-exposed-validation-rule

Please note that this package requires Laravel 5.1 or above.

Usage

The following code snippet shows an example of how to use the password exposed validation rule.

use DivineOmega\LaravelPasswordExposedValidationRule\PasswordExposed;

$request->validate([
    'password' => ['required', new PasswordExposed()],
]);

If you wish, you can also set a custom validation message, as shown below.

use DivineOmega\LaravelPasswordExposedValidationRule\PasswordExposed;

$request->validate([
    'password' => ['required', (new PasswordExposed())->setMessage('This password is not secure.')],
]);

Star History Chart