forked from aberkie/craft-recaptcha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.32 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": "aberkie/recaptcha",
"description": "Craft3 plugin to dispaly Google's new reCaptcha form widget and validate responses.",
"type": "craft-plugin",
"version": "2.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"recaptcha"
],
"support": {
"docs": "https://github.com/https://github.com/aberkie/craft-recaptcha/recaptcha/blob/master/README.md",
"issues": "https://github.com/https://github.com/aberkie/craft-recaptcha/recaptcha/issues"
},
"license": "MIT",
"authors": [
{
"name": "Aaron Berkowitz",
"homepage": "https://github.com/aberkie"
}
],
"require": {
"craftcms/cms": "^3.0.0-RC1"
},
"autoload": {
"psr-4": {
"aberkie\\recaptcha\\": "src/"
}
},
"extra": {
"name": "Recaptcha",
"handle": "recaptcha",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/https://github.com/aberkie/craft-recaptcha/recaptcha/master/CHANGELOG.md",
"components": {
"render": "aberkie\\recaptcha\\services\\Render",
"verify": "aberkie\\recaptcha\\services\\Verify"
},
"class": "aberkie\\recaptcha\\Recaptcha"
}
}