forked from silverstripe/silverstripe-mathspamprotection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
31 lines (31 loc) · 839 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
{
"name": "silverstripe/mathspamprotection",
"description": "This module provides a simple math protection mechanism for prevent spam from your forms.Includes an EditableMathSpamField to integrate with the UserForms module.",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"spamprotection",
"mathspamprotection"
],
"authors": [
{
"name": "Will Rossiter",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"silverstripe/spamprotection": "^3"
},
"autoload": {
"psr-4": {
"SilverStripe\\MathSpamProtection\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"license": "BSD-3-Clause"
}