forked from karser/KarserRecaptcha3Bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (37 loc) · 973 Bytes
/
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": "karser/karser-recaptcha3-bundle",
"type": "symfony-bundle",
"description": "Google ReCAPTCHA v3 for Symfony",
"keywords": ["recaptcha", "symfony", "captcha", "no-captcha", "google", "spam"],
"homepage": "http://github.com/karser/KarserRecaptcha3Bundle",
"license": "MIT",
"authors": [
{
"name": "Dmitrii Poddubnyi",
"homepage": "https://github.com/karser"
}
],
"require": {
"php": ">=7.1",
"google/recaptcha": "^1.2",
"symfony/form": "^3.4|^4.0|^5.0",
"symfony/framework-bundle": "^3.4|^4.0|^5.0",
"symfony/yaml": "^3.4|^4.0|^5.0",
"symfony/validator": "^3.4|^4.0|^5.0",
"symfony/twig-bundle": "^3.4|^4.0|^5.0",
"twig/twig": "^2.9|^3.0"
},
"require-dev": {
"phpunit/phpunit": "~6.5.0|~8.5.0"
},
"autoload": {
"psr-4": {
"Karser\\Recaptcha3Bundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}