-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.22 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
{
"name": "flowsa/flow-re-captcha",
"description": "A re-captcha field type for validating forms",
"type": "craft-plugin",
"version": "0.0.4",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"flowrecaptcha"
],
"support": {
"docs": "https://www.flowsa.com",
"issues": "https://www.flowsa.com"
},
"license": "MIT",
"authors": [
{
"name": "Flow Communications",
"homepage": "https://www.flowsa.com"
}
],
"require": {
"craftcms/cms": "^4.0|^5.0"
},
"autoload": {
"psr-4": {
"flowsa\\flowrecaptcha\\": "src/"
}
},
"extra": {
"name": "Flow reCaptcha v2",
"handle": "flow-re-captcha",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://www.flowsa.com",
"class": "flowsa\\flowrecaptcha\\FlowReCaptcha"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"craftcms/rector": "dev-main"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}