forked from jeremykendall/password-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.21 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
{
"name": "jeremykendall/password-validator",
"description": "Password Validator validates password_hash generated passwords, rehashes passwords as necessary, and will upgrade legacy passwords.",
"homepage": "https://github.com/jeremykendall/password-validator",
"support": {
"issues": "https://github.com/jeremykendall/password-validator/issues",
"source": "https://github.com/jeremykendall/password-validator"
},
"license": "MIT",
"authors": [
{
"name": "Jeremy Kendall",
"homepage": "http://about.me/jeremykendall",
"role": "Developer"
}
],
"keywords": [
"password",
"passwords",
"password validator",
"password validation",
"password_hash",
"security"
],
"bin": [
"bin/cost-check",
"bin/version-check"
],
"require": {
"php": ">=5.3.7",
"ircmaxell/password-compat": "1.*",
"wp-cli/php-cli-tools": "0.10.*"
},
"require-dev": {
"league/phpunit-coverage-listener": "~1.1",
"phpunit/phpunit": "4.*"
},
"autoload": {
"psr-0": {
"JeremyKendall\\Password\\": "src/"
}
}
}