forked from schuppo/PasswordStrengthPackage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1010 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 1010 Bytes
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
{
"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": "oliver.schupp@yahoo.de"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "~5.0|6.*",
"illuminate/translation": "^5.1|6.*"
},
"require-dev": {
"illuminate/validation": "~5.0|6.*",
"phpunit/phpunit": "^4.8"
},
"autoload": {
"psr-0": {
"Schuppo\\PasswordStrength": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Schuppo\\PasswordStrength\\PasswordStrengthServiceProvider"
]
}
},
"minimum-stability": "dev",
"license": "MIT"
}