-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.19 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.19 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
{
"name": "locastic/zxcvbn-password-validator",
"description": "Realistic Symfony password strength validator based on Zxcvbn PHP ",
"keywords": ["password", "validator", "symfony", "php", "dropbox", "zxcvb"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Locastic",
"email": "info@locastic.com",
"homepage": "https://www.locastic.com"
}
],
"require": {
"php": "^7.0",
"bjeavons/zxcvbn-php": "^0.3.0",
"psr/container": "^1.0",
"psr/log": "^1.0",
"symfony/validator": "^3.3.6 || ^4.0"
},
"require-dev": {
"symfony/config": "^3.3.6 || ^4.0",
"symfony/console": "^3.3.6 || ^4.0",
"symfony/phpunit-bridge": "^3.3.6 || ^4.1",
"php-http/httplug": "^1.1",
"guzzlehttp/psr7": "^1.4"
},
"autoload": {
"psr-4": {
"Locastic\\Component\\ZxcvbnPasswordValidator\\": "src/"
},
"exclude-from-classmap": ["test/"]
},
"autoload-dev": {
"psr-4": {
"Locastic\\Component\\ZxcvbnPasswordValidator\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
}
}