-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
53 lines (53 loc) · 1.43 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
{
"name": "divineomega/laravel-password-exposed-validation-rule",
"description": "Laravel validation rule that checks if a password has been exposed in a data breach",
"type": "library",
"require": {
"php": "^7.1||^8.0||8.1||8.2||8.3",
"divineomega/password_exposed": "^5.0",
"illuminate/contracts": "^5.1||^6.0||^7.0||^8.0||^9.0||^10.0||^11.0"
},
"license": "LGPL-3.0-only",
"authors": [
{
"name": "Jordan Hall",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"DivineOmega\\LaravelPasswordExposedValidationRule\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^7.0||^8.0||^9.0",
"php-coveralls/php-coveralls": "^2.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/langleyfoxall/password_exposed",
"no-api": true
},
{
"type": "vcs",
"url": "https://github.com/langleyfoxall/psr-18-guzzle-adapter",
"no-api": true
},
{
"type": "vcs",
"url": "https://github.com/langleyfoxall/DO-File-Cache-PSR-6.git",
"no-api": true
}
],
"config": {
"allow-plugins": {
"php-http/discovery": false
}
}
}