We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb801e6 commit d2e2284Copy full SHA for d2e2284
composer.json
@@ -3,6 +3,7 @@
3
"description": "Laravel validation rule that checks if a password has been exposed in a data breach",
4
"type": "library",
5
"require": {
6
+ "php": "^7.1",
7
"divineomega/password_exposed": "^2.5||^3.0",
8
"illuminate/contracts": "^5.1"
9
},
src/PasswordExposed.php
@@ -3,8 +3,8 @@
namespace DivineOmega\LaravelPasswordExposedValidationRule;
use DivineOmega\LaravelPasswordExposedValidationRule\Factories\PasswordExposedCheckerFactory;
+use DivineOmega\PasswordExposed\Enums\PasswordStatus;
use DivineOmega\PasswordExposed\PasswordExposedChecker;
-use DivineOmega\PasswordExposed\PasswordStatus;
use Illuminate\Contracts\Validation\Rule;
10
/**
0 commit comments