forked from juban/craft-google-recaptcha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·67 lines (67 loc) · 1.76 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": "jub/craft-google-recaptcha",
"description": "Google reCAPTCHA for Craft CMS",
"type": "craft-plugin",
"version": "2.2.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"google recaptcha"
],
"support": {
"docs": "https://github.com/juban/craft-google-recaptcha/blob/master/README.md",
"issues": "https://github.com/juban/craft-google-recaptcha/issues"
},
"license": "MIT",
"authors": [
{
"name": "juban",
"homepage": "https://github.com/juban"
}
],
"require": {
"php": "^8.0.2",
"craftcms/cms": "^4.0"
},
"require-dev": {
"codeception/codeception": "^4.0.0",
"vlucas/phpdotenv": "^3.0",
"codeception/module-yii2": "^1.0.0",
"codeception/module-asserts": "^1.0.0",
"codeception/module-db": "^1.1",
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main"
},
"autoload": {
"psr-4": {
"juban\\googlerecaptcha\\": "src/"
}
},
"extra": {
"name": "Google reCAPTCHA",
"handle": "google-recaptcha",
"developer": "juban",
"developerUrl": "https://github.com/juban",
"documentationUrl": "https://github.com/juban/craft-google-recaptcha/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/juban/craft-google-recaptcha/master/CHANGELOG.md",
"components": {
"recaptcha": "juban\\googlerecaptcha\\services\\Recaptcha"
},
"class": "juban\\googlerecaptcha\\GoogleRecaptcha"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix",
"phpstan": "phpstan --memory-limit=1G"
}
}