-
Notifications
You must be signed in to change notification settings - Fork 54
/
composer.json
executable file
·50 lines (50 loc) · 1.28 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "schuppo/password-strength",
"description": "This package provides a validator for ensuring strong passwords in Laravel 4 applications.",
"keywords": [
"laravel",
"laravel5",
"laravel 5",
"validation",
"password",
"password strength"
],
"authors": [
{
"name": "Oliver Schupp",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.0",
"illuminate/support": "^5.1|^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/translation": "^5.1|6.*|7.*|8.*|9.*|^10.0"
},
"require-dev": {
"illuminate/validation": "~5.1|6.*|7.*|8.*|9.*|^10.0",
"phpunit/phpunit": "^6.0|^7.0|^8.0|^9.5.10",
"orchestra/testbench": "^3.5|^4.0|^5.0|^6.0|^8.0"
},
"autoload": {
"psr-4": {
"Schuppo\\PasswordStrength\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Schuppo\\PasswordStrength\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Schuppo\\PasswordStrength\\PasswordStrengthServiceProvider"
]
}
},
"minimum-stability": "dev",
"license": "MIT",
"config": {
"discard-changes": true
}
}