-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
77 lines (77 loc) · 2.41 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "omines/antispam-bundle",
"type": "symfony-bundle",
"description": "The Swiss Army Knife for protecting your Symfony forms from all kinds of spam",
"keywords": ["symfony","spam","antispam","honeypot","spam timer","cyrillic"],
"license": "MIT",
"authors": [
{
"name": "Niels Keurentjes",
"email": "[email protected]",
"homepage": "https://www.omines.nl/"
}
],
"support": {
"issues": "https://github.com/omines/antispam-bundle/issues"
},
"require": {
"php": ">=8.2",
"ext-mbstring": "*",
"psr/log": "^3.0",
"symfony/clock": "^6.4|^7.1",
"symfony/form": "^6.4|^7.1",
"symfony/framework-bundle": "^6.4|^7.1",
"symfony/translation": "^6.4|^7.1",
"symfony/twig-bridge": "^6.4|^7.1",
"symfony/validator": "^6.4|^7.1",
"symfony/yaml": "^6.4|^7.1"
},
"require-dev": {
"ekino/phpstan-banned-code": "^3.0",
"friendsofphp/php-cs-fixer": "^3.68.0",
"infection/infection": "^0.29.8",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^2.1.1",
"phpstan/phpstan-phpunit": "^2.0.3",
"phpstan/phpstan-symfony": "^2.0.1",
"phpunit/phpunit": "^11.5.3",
"symfony/browser-kit": "^6.4|^7.2.0",
"symfony/css-selector": "^6.4|^7.2.0",
"symfony/debug-bundle": "^6.4|^7.2.0",
"symfony/dotenv": "^6.4|^7.2.0",
"symfony/monolog-bundle": "^3.10",
"symfony/routing": "^6.4|^7.2.0",
"symfony/runtime": "^6.4|^7.2.0",
"symfony/twig-bundle": "^6.4|^7.2.0",
"symfony/web-profiler-bundle": "^6.4|^7.2.2"
},
"conflict": {
"monolog/monolog": "<3",
"twig/twig": "<3.1"
},
"autoload": {
"psr-4": { "Omines\\AntiSpamBundle\\": "src/"}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Tests\\Fixture\\": "tests/Fixture/src/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"audit": {"abandoned": "fail"},
"allow-plugins": {
"infection/extension-installer": true,
"phpstan/extension-installer": true,
"symfony/flex": true,
"symfony/runtime": true
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
}
}
}