-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
executable file
·72 lines (72 loc) · 1.9 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
68
69
70
71
72
{
"name": "jub/craft-google-recaptcha",
"description": "Google reCAPTCHA for Craft CMS",
"type": "craft-plugin",
"version": "3.0.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|^5.0"
},
"require-dev": {
"codeception/codeception": "^5.0.11",
"codeception/module-asserts": "^3.0.0",
"codeception/module-yii2": "^1.1.9",
"codeception/lib-innerbrowser": "4.0.1",
"vlucas/phpdotenv": "^5.4.0",
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main",
"craftcms/rector": "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
},
"preferred-install": {
"craftcms/cms": "source",
"*" : "dist"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix",
"phpstan": "phpstan --memory-limit=1G"
}
}