forked from rollerworks/PasswordStrengthBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.53 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.53 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
51
52
53
54
55
56
{
"name": "rollerworks/password-strength-bundle",
"type": "symfony-bundle",
"description": "Password-strength validator bundle for Symfony",
"keywords": [
"password",
"validator",
"symfony",
"bundle"
],
"license": "MIT",
"authors": [
{
"name": "Sebastiaan Stok",
"email": "s.stok@rollercapes.net"
},
{
"name": "Luis Cordova",
"email": "cordoval@gmail.com"
},
{
"name": "Community contributions",
"homepage": "https://github.com/rollerworks/PasswordStrengthBundle/contributors"
}
],
"require": {
"php": "^7.1",
"rollerworks/password-strength-validator": "^1.0.1",
"symfony/framework-bundle": "^3.4.22 || ^4.0 || ^5.0"
},
"require-dev": {
"matthiasnoback/symfony-dependency-injection-test": "^3.1.0 || ^4.1.0",
"symfony/console": "^3.4.22 || ^4.0 || ^5.0",
"symfony/phpunit-bridge": "^3.4.22 || ^4.0 || ^5.0",
"symfony/var-dumper": "^3.4.22 || ^4.0 || ^5.0"
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
}
},
"autoload": {
"psr-4": {
"Rollerworks\\Bundle\\PasswordStrengthBundle\\": "src/"
},
"exclude-from-classmap": [
"test/"
]
},
"autoload-dev": {
"psr-4": {
"Rollerworks\\Bundle\\PasswordStrengthBundle\\Tests\\": "tests/"
}
},
"minimum-stability": "beta"
}