-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
44 lines (44 loc) · 1.11 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
{
"name": "matt-west/craft-recaptcha",
"description": "Integrate Google’s reCAPTCHA into your forms.",
"type": "craft-plugin",
"version": "3.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"craft recaptcha"
],
"support": {
"docs": "https://github.com/matt-west/craft-recaptcha/blob/master/README.md",
"issues": "https://github.com/matt-west/craft-recaptcha/issues"
},
"license": "MIT",
"authors": [
{
"name": "Matt West",
"homepage": "https://mattwest.design"
}
],
"require": {
"craftcms/cms": "^4.0.3|^5.0.0",
"guzzlehttp/guzzle": "^6.3 || ^7.2"
},
"autoload": {
"psr-4": {
"mattwest\\craftrecaptcha\\": "src/"
}
},
"extra": {
"name": "reCAPTCHA",
"handle": "recaptcha",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/matt-west/craft-recaptcha/master/CHANGELOG.md",
"components": {
"craftRecaptchaService": "mattwest\\craftrecaptcha\\services\\CraftRecaptchaService"
},
"class": "mattwest\\craftrecaptcha\\CraftRecaptcha"
}
}