-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·58 lines (58 loc) · 1.5 KB
/
composer.json
File metadata and controls
executable file
·58 lines (58 loc) · 1.5 KB
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
{
"name": "flowsa/captcha",
"description": "Flows Captcha Plugin",
"type": "craft-plugin",
"version": "1.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"captcha"
],
"support": {
"docs": "https://github.com/flowsa/captcha",
"issues": "https://github.com/flowsa/captcha/issues"
},
"license": "MIT",
"authors": [
{
"name": "Flow Communications",
"homepage": "https://www.flowsa.com"
}
],
"require": {
"craftcms/cms": "^4.0.0-alpha"
},
"require-dev": {
"craftcms/cms": "^4.0.0-alpha",
"codeception/codeception": "^5.1",
"vlucas/phpdotenv": "^3.0",
"craftcms/rector": "dev-main"
},
"autoload": {
"psr-4": {
"flowsa\\captcha\\": "src/"
}
},
"extra": {
"name": "captcha",
"handle": "captcha",
"developer": "Flow",
"developerUrl": "www.flowsa.com",
"documentationUrl": "https://github.com/flowsa/captcha",
"changelogUrl": "https://github.com/flowsa/captcha/blob/master/CHANGELOG.md",
"components": {
"captchaService": "flowsa\\captcha\\services\\CaptchaService"
},
"class": "flowsa\\captcha\\Captcha"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}