forked from DieSchittigs/recaptcha-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 927 Bytes
/
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
{
"name": "dieschittigs/contao-recaptcha",
"description": "Contao 4 Bundle that replaces the default Contao captcha with Google's invisible reCAPTCHA, reCAPTCHA 2.0 or reCAPTCHA 3",
"type": "contao-bundle",
"license": "ISC",
"authors": [
{
"name": "Christopher Mühl",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6",
"contao/core-bundle": "^4.0"
},
"autoload": {
"psr-4": {
"DieSchittigs\\RecaptchaBundle\\": "src/"
},
"classmap": [
"src/Resources/contao/"
],
"exclude-from-classmap": [
"src/Resources/contao/config/",
"src/Resources/contao/dca/",
"src/Resources/contao/languages/"
]
},
"extra": {
"contao-manager-plugin": "DieSchittigs\\RecaptchaBundle\\ContaoManager\\Plugin"
}
}