-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
composer.json
31 lines (31 loc) · 866 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "divineomega/laravel-password-exposed-validation-rule",
"description": "Laravel validation rule that checks if a password has been exposed in a data breach",
"type": "library",
"require": {
"php": "^7.1||^8.0||8.1",
"divineomega/password_exposed": "^3.2.0",
"illuminate/contracts": "^5.1||^6.0||^7.0||^8.0||^9.0"
},
"license": "LGPL-3.0-only",
"authors": [
{
"name": "Jordan Hall",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"DivineOmega\\LaravelPasswordExposedValidationRule\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^7.0||^8.0||^9.0",
"php-coveralls/php-coveralls": "^2.0"
}
}