forked from Gregwar/CaptchaBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.14 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
{
"name": "ralusnom/captcha-bundle",
"type": "symfony-bundle",
"description": "Captcha bundle, based on Gregwar's Captcha",
"keywords": ["symfony2", "symfony", "captcha", "bot", "visual", "code", "security", "spam"],
"homepage": "https://github.com/Gregwar/CaptchaBundle",
"license": "MIT",
"authors": [
{
"name": "Grégoire Passault",
"email": "g.passault@gmail.com",
"homepage": "http://www.gregwar.com/"
},
{
"name": "Jeremy Livingston",
"email": "jeremy.j.livingston@gmail.com"
}
],
"require": {
"php": ">=7.1.3",
"ext-gd": "*",
"gregwar/captcha": "^1.1.9",
"symfony/form": "~5.0|~6.0|~7.0",
"symfony/framework-bundle": "~5.0|~6.0|~7.0",
"symfony/translation": "~5.0|^6.0|~7.0",
"twig/twig": "^2.10|^3.0"
},
"autoload": {
"psr-4": {
"Gregwar\\CaptchaBundle\\": "/"
}
},
"config": {
"sort-packages": true
},
"require-dev": {
"phpstan/phpstan": "^0.12.66",
"symplify/easy-coding-standard": "^6.1"
}
}