-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
62 lines (62 loc) · 1.74 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
{
"name": "rebelinblue/laravel-zxcvbn",
"description": "Service provider to use the zxcvbn project by @dropbox in Laravel 5.4 and above",
"keywords": [
"zxcvbn",
"passwords",
"security",
"validation",
"laravel"
],
"homepage": "https://github.com/REBELinBLUE/laravel-zxcvbn",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Stephen Ball",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"illuminate/support": "^5.4||^6.0||^7.0||^8.0||^9.0||^10.0",
"bjeavons/zxcvbn-php": "^0.3||^1.2||^1.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.14",
"orchestra/testbench": "~3.4.10 || ~3.6.7 || ~3.7.8 || ~3.8.6 || ^4.8 || ^5.2 || ^6.0 || ^7.0",
"php-parallel-lint/php-console-highlighter": "^1.0",
"php-parallel-lint/php-parallel-lint": "^0.9.2||^1.2",
"phpmd/phpmd": "^2.6",
"phpunit/phpunit": "^5.7||^9.5",
"squizlabs/php_codesniffer": "^2.8||^3.5.8"
},
"autoload": {
"psr-4": {
"REBELinBLUE\\Zxcvbn\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"REBELinBLUE\\Zxcvbn\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"kylekatarnls/update-helper": true
}
},
"extra": {
"laravel": {
"providers": [
"REBELinBLUE\\Zxcvbn\\ZxcvbnServiceProvider"
],
"aliases": {
"Zxcvbn": "REBELinBLUE\\Zxcvbn\\ZxcvbnFacade"
}
}
}
}