forked from DivineOmega/password_exposed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
85 lines (85 loc) · 2.56 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"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": "[email protected]"
},
{
"name": "Contributors",
"homepage": "https://github.com/DivineOmega/password_exposed/graphs/contributors"
}
],
"require": {
"php": "^7.1||^8.0||^8.3",
"psr/http-client": "^1.0",
"psr/cache": "^3.0",
"psr/http-message": "^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",
"divineomega/psr-18-guzzle-adapter": "1.3.0",
"divineomega/do-file-cache-psr-6": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"fzaninotto/faker": "^1.7",
"vimeo/psalm": "^5.25",
"kriswallsmith/buzz": "^2.0",
"symfony/cache": "^7.0",
"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,
"config": {
"allow-plugins": {
"php-http/discovery": false
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/langleyfoxall/psr-18-guzzle-adapter",
"no-api": true
},
{
"type": "vcs",
"url": "https://github.com/langleyfoxall/Buzz",
"no-api": true
},
{
"type": "vcs",
"url": "https://github.com/langleyfoxall/DO-File-Cache-PSR-6.git",
"no-api": true
}
]
}