-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
35 lines (35 loc) · 1.08 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
{
"name": "kleegroup/google-recaptcha-bundle",
"type": "symfony-bundle",
"description": "Symfony Google Recaptcha Form Type",
"keywords": ["Validator", "Captcha", "Google"],
"homepage": "https://github.com/KleeGroup/Recaptcha-bundle-symfony",
"license": "MIT",
"authors": [
{
"name": "Klee Group",
"homepage": "http://www.kleegroup.com/"
}
],
"autoload": {
"psr-4": { "KleeGroup\\GoogleReCaptchaBundle\\": "" }
},
"config": {
"sort-packages": true
},
"require": {
"php": ">=5.5.9",
"google/recaptcha": "^1.1.3",
"symfony/config": "3.4.* || >=4.0",
"symfony/dependency-injection": "3.4.* || >=4.0",
"symfony/form": "3.4.* || >=4.0",
"symfony/http-foundation": "3.4.* || >=4.0",
"symfony/options-resolver": "3.4.* || >=4.0",
"symfony/translation": "3.4.* || >=4.0",
"symfony/twig-bundle": "3.4.* || >=4.0",
"symfony/validator": "3.4.* || >=4.0"
},
"require-dev": {
"phpunit/phpunit": "~5.4"
}
}