forked from REBELinBLUE/laravel-zxcvbn
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
59 lines (59 loc) · 1.52 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
{
"name": "rebelinblue/laravel5-zxcvbn",
"description": "Service provider to use the zxcvbn project by @dropbox in Laravel 5.",
"keywords": [
"zxcvbn",
"passwords",
"security",
"validation",
"laravel"
],
"homepage": "https://github.com/REBELinBLUE/laravel5-zxcvbn",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Stephen Ball",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6",
"illuminate/support": "~5.4|~5.5",
"bjeavons/zxcvbn-php": "^0.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.1",
"jakub-onderka/php-console-highlighter": "^0.3.2",
"jakub-onderka/php-parallel-lint": "^0.9.2",
"orchestra/testbench": "^3.4.10",
"phpmd/phpmd": "^2.6",
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^2.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
},
"extra": {
"laravel": {
"providers": [
"REBELinBLUE\\Zxcvbn\\ZxcvbnServiceProvider"
],
"aliases": {
"Zxcvbn": "REBELinBLUE\\Zxcvbn\\ZxcvbnFacade"
}
}
}
}