marcreichel/password-exposed-rule

This package is abandoned and no longer maintained. The author suggests using the illuminate/validation package instead.

Laravel Validation rule to check that a password hasn't been exposed.

1.1.0 2021-04-27 16:03 UTC

This package is auto-updated.

Last update: 2022-03-15 08:19:06 UTC


README

Package development abandoned due to official support for uncompromised passwords.

Laravel Password Exposed Rule

Laravel Validation rule to check that a password hasn't been exposed

Installation

Install this rule via composer.

composer require marcreichel/password-exposed-rule

Usage (Code snippet)

use MarcReichel\ExposedPassword\NotExposed;

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