-
-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 2.01 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 2.01 KB
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
64
65
{
"name": "jord-jd/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/Jord-JD/password_exposed",
"support": {
"issues": "https://github.com/Jord-JD/password_exposed/issues",
"source": "https://github.com/Jord-JD/password_exposed/releases",
"wiki": "https://github.com/Jord-JD/password_exposed/wiki"
},
"authors": [
{
"name": "Jordan Hall",
"email": "jordan@hall05.co.uk"
},
{
"name": "Contributors",
"homepage": "https://github.com/Jord-JD/password_exposed/graphs/contributors"
}
],
"require": {
"php": "^7.1||^8.0",
"psr/http-client": "^1.0",
"psr/cache": "^1.0 || ^2.0 || ^3.0",
"psr/http-message": "^1.0 || ^2.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",
"jord-jd/do-file-cache-psr-6": "^3.0",
"jord-jd/psr-18-guzzle-adapter": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"fakerphp/faker": "^1.23",
"vimeo/psalm": "^4",
"kriswallsmith/buzz": "^1.0",
"symfony/cache": "^4.2.12"
},
"autoload": {
"psr-4": {
"JordJD\\PasswordExposed\\": "src/"
},
"files": [
"src/PasswordExposedFunction.php"
]
},
"autoload-dev": {
"psr-4": {
"JordJD\\PasswordExposed\\Tests\\": "tests/"
}
},
"replace": {
"divineomega/password_exposed": "self.version"
},
"extra": {
"branch-alias": {
"dev-master": "5.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}