-
Notifications
You must be signed in to change notification settings - Fork 36
/
composer.json
69 lines (69 loc) · 2 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
{
"name": "hybridinteractive/craft-contact-form-extensions",
"description": "Adds extensions to the Craft CMS contact form plugin.",
"version": "1.3.2",
"type": "craft-plugin",
"keywords": [
"cms",
"craftcms",
"craft",
"craft-plugin",
"craft contact form extensions"
],
"license": "MIT",
"authors": [
{
"name": "Hybrid Interactive",
"homepage": "https://hybridinteractive.io"
}
],
"support": {
"docs": "https://github.com/hybridinteractive/craft-contact-form-extensions/blob/master/README.md",
"issues": "https://github.com/hybridinteractive/craft-contact-form-extensions/issues"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.2.5|^8.0",
"albertcht/invisible-recaptcha": "^1.8",
"composer/composer": "^2.2.12",
"craftcms/cms": "^3.2.0",
"craftcms/contact-form": "^2.3.0"
},
"require-dev": {
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main"
},
"autoload": {
"psr-4": {
"hybridinteractive\\contactformextensions\\": "src/"
}
},
"extra": {
"name": "Contact Form Extensions",
"handle": "contact-form-extensions",
"schemaVersion": "1.0.1",
"hasCpSettings": true,
"hasCpSection": true,
"changelogUrl": "https://github.com/hybridinteractive/craft-contact-form-extensions/blob/master/CHANGELOG.md",
"documentationUrl": "https://github.com/hybridinteractive/craft-contact-form-extensions/blob/master/README.md",
"components": {
"contactFormExtensionsService": "hybridinteractive\\contactformextensions\\services\\ContactFormExtensionsService"
},
"class": "hybridinteractive\\contactformextensions\\ContactFormExtensions"
},
"scripts": {
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix",
"phpstan": "phpstan --memory-limit=1G"
},
"config": {
"platform": {
"php": "7.2.5"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}