-
Notifications
You must be signed in to change notification settings - Fork 126
/
composer.json
41 lines (41 loc) · 1.13 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
{
"name": "gregwar/captcha-bundle",
"type": "symfony-bundle",
"description": "Captcha bundle",
"keywords": ["symfony2", "symfony", "captcha", "bot", "visual", "code", "security", "spam"],
"homepage": "https://github.com/Gregwar/CaptchaBundle",
"license": "MIT",
"authors": [
{
"name": "Grégoire Passault",
"email": "[email protected]",
"homepage": "https://www.gregwar.com/"
},
{
"name": "Jeremy Livingston",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0.2",
"ext-gd": "*",
"gregwar/captcha": "^1.2.1",
"symfony/form": "~6.0|~7.0",
"symfony/framework-bundle": "~6.0|~7.0",
"symfony/translation": "~6.0|^7.0",
"twig/twig": "^3.0"
},
"autoload": {
"psr-4": {
"Gregwar\\CaptchaBundle\\": "/"
}
},
"config": {
"sort-packages": true
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.45",
"phpstan/phpstan": "^1.10",
"symplify/easy-coding-standard": "^12"
}
}