forked from chillu/silverstripe-recaptcha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 785 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
{
"name": "silverstripe/recaptcha",
"description": "Provides a form field which allows form to validate for non-bot submissions by giving them a challenge to decrypt an image.",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"spamprotection"
],
"authors": [
{
"name": "Ingo Schommer",
"email": "[email protected]"
}
],
"require": {
"silverstripe/spamprotection": "~3.0",
"silverstripe/framework": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"autoload": {
"psr-4": {
"SilverLeague\\Recaptcha\\": "code/",
"SilverLeague\\Recaptcha\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
},
"minimum-stability": "dev"
}