-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
29 lines (29 loc) · 869 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": "jycr753/password-strength-checker",
"description": "Make a calculation so users can have a visual response to password input",
"homepage": "https://github.com/jycr753/password-strength-checker",
"keywords": ["password", "secure password", "password strength", "password calculator", "strong passwords"],
"license": "MIT",
"authors": [
{
"name": "Jorge Y. C. Rodriguez",
"email": "[email protected]",
"homepage": "http://www.blog.jorgerodriguez.dk",
"role": "Developer"
}
],
"require": {
"illuminate/support": "^5.2",
"vlucas/phpdotenv": "^2.2"
},
"autoload": {
"psr-4": {
"jycr753\\PasswordStrengthChecker\\": "src/"
}
},
"require-dev": {
"phpspec/phpspec": "^2.5",
"phpunit/phpunit": "^5.3",
"orchestra/testbench": "^3.1"
}
}