-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
62 lines (62 loc) · 1.64 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": "rollerworks/password-common-list",
"description": "Password CommonList validator for Symfony",
"license": "MIT",
"type": "library",
"keywords": [
"password",
"validator",
"symfony"
],
"authors": [
{
"name": "Sebastiaan Stok",
"email": "[email protected]"
},
{
"name": "Community contributions",
"homepage": "https://github.com/rollerworks/password-common-list/contributors"
}
],
"require": {
"php": ">=7.4",
"symfony/polyfill-mbstring": "^1.5.0",
"symfony/validator": "^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10.39",
"phpstan/phpstan-phpunit": "1.3.15",
"phpunit/phpunit": "^9.5",
"rollerscapes/standards": "^1.0",
"symfony/framework-bundle": "^5.3 || ^6.0 || ^7.0",
"symfony/phpunit-bridge": "^5.3 || ^6.0 || ^7.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Rollerworks\\Bundle\\PasswordCommonListBundle\\": "src/Bundle",
"Rollerworks\\Component\\PasswordCommonList\\": "src/"
},
"exclude-from-classmap": [
"test/",
"Resources/"
]
},
"autoload-dev": {
"psr-4": {
"Rollerworks\\Component\\PasswordCommonList\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "1.0-dev"
}
}
}