-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.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": "dario_swain/re-captcha-validator",
"type": "library",
"description": "Google reCaptcha FormType and Validator for Symfony applications.",
"keywords": ["reCaptcha", "captcha", "security", "symfony", "form", "validator"],
"license": "MIT",
"authors": [
{
"name": "Ilya Pokamestov",
"email": "[email protected]",
"homepage": "http://github.com/DarioSwain",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.3",
"dario_swain/re-captcha-library": "1.0.*"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"squizlabs/php_codesniffer": "~2.0",
"symfony/framework-bundle": "~2.3|~3.0",
"symfony/form": "~2.3|~3.0",
"symfony/validator": "~2.3|~3.0"
},
"autoload": {
"psr-4": {
"DS\\Component\\ReCaptchaValidator\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"DS\\Component\\ReCaptchaValidator\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "v1.0.0-dev"
}
}
}