-
Notifications
You must be signed in to change notification settings - Fork 37
/
composer.json
36 lines (36 loc) · 1010 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
{
"name": "undefinedoffset/silverstripe-nocaptcha",
"description": "A spam protector and form field using Google's reCAPTCHA v2 or optionally a foundation v3 implementation",
"type": "silverstripe-vendormodule",
"keywords": ["silverstripe", "recaptcha", "recaptcha2", "nocaptcha", "spamprotection"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Ed Chipman",
"homepage": "http://www.edchipman.ca",
"role": "Developer"
}
],
"require": {
"silverstripe/framework": "^4 | ^5",
"silverstripe/spamprotection": "^3 | ^4"
},
"prefer-stable": true,
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"UndefinedOffset\\NoCaptcha\\": "src/"
}
},
"support": {
"issues": "https://github.com/undefinedoffset/silverstripe-nocaptcha/issues"
},
"extra": {
"expose": [
"javascript"
],
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}