forked from langleyfoxall/laravel-nist-password-rules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
29 lines (29 loc) · 815 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
{
"name": "pl38/laravel-nist-password-rules",
"description": "🔒 Provides Laravel validation rules that follow the password related recommendations found in NIST Special Publication 800-63B.",
"type": "library",
"license": "LGPL-3.0-only",
"authors": [
{
"name": "Jordan Hall",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"laravel/framework": "^7.0",
"divineomega/laravel-password-exposed-validation-rule": "^3.0.1"
},
"autoload": {
"psr-4": {
"PL38\\LaravelNISTPasswordRules\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"PL38\\LaravelNISTPasswordRules\\ServiceProvider"
]
}
}
}