-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
53 lines (53 loc) · 1.37 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
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "nswdpc/silverstripe-recaptcha-v3",
"description": "Recaptcha V3 verification for Silverstripe framework, including a form field, spam protector and verification support",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"recaptcha",
"v3",
"verify",
"spam",
"spamprotection"
],
"license": "BSD-3-Clause",
"require": {
"silverstripe/spamprotection" : "^4"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^3"
},
"suggest": {
"nswdpc/silverstripe-recaptcha-v3-userforms": "Adding reCAPTCHA v3 field via silverstripe/userforms"
},
"authors": [
{
"name": "James Ellis",
"homepage": "https://dpc.nsw.gov.au",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"NSWDPC\\SpamProtection\\Tests\\": [
"tests/"
],
"NSWDPC\\SpamProtection\\": [
"src/Controllers",
"src/Extensions",
"src/Forms",
"src/Models",
"src/Services",
"src/Traits"
]
}
},
"extra": {
"expose": [
"client/static"
]
}
}