-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
67 lines (67 loc) · 1.59 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "clarknelson/craft-recaptcha-3",
"description": "Verifies via Google the site and secret codes required to verify humanity through reCAPTCHA v3.",
"type": "craft-plugin",
"version": "4.0.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"craft recaptcha 3",
"forms",
"contact",
"security",
"recaptcha",
"captcha",
"spam",
"anti-spam",
"validation",
"google",
"anti-bot",
"anti-bots"
],
"support": {
"docs": "https://github.com/clarknelson/craft-recaptcha-3/blob/master/README.md",
"issues": "https://github.com/clarknelson/craft-recaptcha-3/issues"
},
"license": "MIT",
"authors": [
{
"name": "Clark Nelson",
"homepage": "http://clarknelson.com"
}
],
"require": {
"craftcms/cms": "^4.0",
"php": "^8.0"
},
"autoload": {
"psr-4": {
"clarknelson\\craftrecaptcha3\\": "src/"
}
},
"extra": {
"name": "Craft reCAPTCHA 3",
"handle": "craft-recaptcha-3",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/clarknelson/craft-recaptcha-3/master/CHANGELOG.md",
"components": {
"defaultService": "clarknelson\\craftrecaptcha3\\services\\DefaultService"
},
"class": "clarknelson\\craftrecaptcha3\\CraftRecaptcha3"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"craftcms/rector": "dev-main",
"phpstan/phpstan": "^1.7"
}
}