-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·48 lines (48 loc) · 1.26 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
{
"name": "choks/password-policy-bundle",
"type": "library",
"license": "GPL-3.0-or-later",
"minimum-stability": "stable",
"prefer-stable": true,
"authors": [
{
"name": "Milan Radovic",
"email": "radovicmmilan@gmail.com"
}
],
"require": {
"php": ">=8.1",
"ext-openssl": "*",
"doctrine/orm": "^2.0|^3.0",
"symfony/console": "^6.0|^7.0",
"symfony/dependency-injection": "^6.0|^7.0",
"symfony/framework-bundle": "^6.0|^7.0",
"symfony/security-bundle": "^6.0|^7.0",
"symfony/translation": "^6.0|^7.0",
"symfony/yaml": "^6.0|^7.0"
},
"require-dev": {
"dama/doctrine-test-bundle": "*",
"infection/infection": "*",
"phpmd/phpmd": "*",
"phpstan/phpstan": "*",
"phpstan/phpstan-phpunit": "*",
"rregeer/phpunit-coverage-check": "*",
"symfony/test-pack": "*"
},
"autoload": {
"psr-4": {
"Choks\\PasswordPolicy\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Choks\\PasswordPolicy\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}