-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
76 lines (76 loc) · 2.53 KB
/
Copy pathcomposer.json
File metadata and controls
76 lines (76 loc) · 2.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"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": "niels.keurentjes@omines.com",
"homepage": "https://www.omines.nl/"
}
],
"support": {
"issues": "https://github.com/omines/antispam-bundle/issues"
},
"require": {
"php": ">=8.2",
"ext-mbstring": "*",
"psr/log": "^2.0|^3.0",
"symfony/clock": "^6.4.30|^7.4|^8.0",
"symfony/form": "^6.4.36|^7.4|^8.0",
"symfony/framework-bundle": "^6.4.39|^7.4.11|^8.0",
"symfony/translation": "^6.4.38|^7.4.10|^8.0",
"symfony/twig-bridge": "^6.4.19|^7.4.12|^8.0",
"symfony/validator": "^6.4.37|^7.4.10|^8.0",
"symfony/yaml": "^6.4.40|^7.4.12|^8.0"
},
"require-dev": {
"ekino/phpstan-banned-code": "^3.2.0",
"friendsofphp/php-cs-fixer": "^3.95.2",
"infection/infection": "^0.32.6",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^2.1.55",
"phpstan/phpstan-phpunit": "^2.0.16",
"phpstan/phpstan-symfony": "^2.0.18",
"phpunit/phpunit": "^11.5.8|^12.5.4|^13.1.12",
"symfony/browser-kit": "^6.4|^7.4|^8.0.8",
"symfony/css-selector": "^6.4|^7.4|^8.0.9",
"symfony/debug-bundle": "^6.4|^7.4|^8.0.8",
"symfony/dotenv": "^6.4|^7.4|^8.0.11",
"symfony/monolog-bundle": "^3.11.1|^4.0.2",
"symfony/routing": "^6.4|^7.4|^8.0.12",
"symfony/runtime": "^6.4|^7.4|^8.0.12",
"symfony/twig-bundle": "^6.4|^7.4|^8.0.8",
"symfony/web-profiler-bundle": "^6.4|^7.4|^8.0.12"
},
"conflict": {
"monolog/monolog": "<3"
},
"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"
}
}
}