-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
composer.json
63 lines (63 loc) · 2 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "divineomega/password_exposed",
"description": "This PHP package provides a `password_exposed` helper function, that uses the haveibeenpwned.com API to check if a password has been exposed in a data breach.",
"type": "library",
"license": "LGPL-3.0-only",
"homepage": "https://github.com/DivineOmega/password_exposed",
"support": {
"issues": "https://github.com/DivineOmega/password_exposed/issues",
"source": "https://github.com/DivineOmega/password_exposed/releases",
"wiki": "https://github.com/DivineOmega/password_exposed/wiki"
},
"authors": [
{
"name": "Jordan Hall",
"email": "jordan@hall05.co.uk"
},
{
"name": "Contributors",
"homepage": "https://github.com/DivineOmega/password_exposed/graphs/contributors"
}
],
"require": {
"php": "^7.1||^8.0",
"psr/http-client": "^1.0",
"psr/cache": "^1.0",
"psr/http-message": "^1.0",
"psr/http-message-implementation": "^1.0",
"psr/http-factory-implementation": "^1.0",
"php-http/discovery": "^1.6",
"nyholm/psr7": "^1.0",
"paragonie/certainty": "^2.4",
"divineomega/do-file-cache-psr-6": "^2.0",
"divineomega/psr-18-guzzle-adapter": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0||^8.0",
"fzaninotto/faker": "^1.7",
"vimeo/psalm": "^4",
"kriswallsmith/buzz": "^1.0",
"symfony/cache": "^4.2.12",
"php-coveralls/php-coveralls": "^2.1"
},
"autoload": {
"psr-4": {
"DivineOmega\\PasswordExposed\\": "src/"
},
"files": [
"src/PasswordExposedFunction.php"
]
},
"autoload-dev": {
"psr-4": {
"DivineOmega\\PasswordExposed\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}