-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.14 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
{
"name":"rsm/rsm-googlerecaptcha-modul",
"description":"Diese Contao 4 Erweiterung stellt Google reCAPTCHA V2 in Form eines neuen Formularfeldes im Formulargenerator bereit. This extension provides Google reCAPTCHA V2 in the form of a new form field in the form generator of Contao Open Source CMS.",
"keywords":["contao","captcha","reCAPTCHA","form","rsm"],
"type":"contao-bundle",
"homepage":"https://www.werbeagentur-rsm.de",
"license":"MIT",
"authors":[
{
"name": "Waldemar Schern",
"email": "[email protected]",
"homepage": "https://www.werbeagentur-rsm.de",
"role": "Developer"
}
],
"support": {
"email": "[email protected]"
},
"require":{
"php":">=5.6",
"contao/core-bundle":"^4.3"
},
"autoload":{
"psr-4": {
"Rsm\\RsmGooglerecaptchaModul\\": "src/"
},
"classmap": [
"src/Resources/contao/"
],
"exclude-from-classmap": [
"src/Resources/contao/config/",
"src/Resources/contao/dca/",
"src/Resources/contao/languages/",
"src/Resources/contao/templates/"
]
},
"extra": {
"contao-manager-plugin": "Rsm\\RsmGooglerecaptchaModul\\ContaoManager\\Plugin"
}
}