forked from rollerworks/PasswordStrengthBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.69 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
{
"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": "[email protected]"
},
{
"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 || ^6.0"
},
"require-dev": {
"matthiasnoback/symfony-dependency-injection-test": "^3.1.0 || ^4.1.0",
"symfony/console": "^3.4.22 || ^4.0 || ^5.0 || ^6.0",
"symfony/phpunit-bridge": "^3.4.22 || ^4.0 || ^5.0 || ^6.0",
"symfony/var-dumper": "^3.4.22 || ^4.0 || ^5.0 || ^6.0"
},
"repositories": [
{"url": "https://github.com/sstok/SymfonyDependencyInjectionTest.git", "type": "git"},
{"url": "https://github.com/sstok/SymfonyConfigTest.git", "type": "git"}
],
"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": "dev",
"prefer-stable": true
}