-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
46 lines (46 loc) · 1.13 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
{
"name": "derhansen/form_crshield",
"type": "typo3-cms-extension",
"description": "Challenge/response spambot protection for TYPO3 ext:form",
"homepage": "https://github.com/derhansen/form_crshield",
"support": {
"issues": "https://github.com/derhansen/form_crshield/issues"
},
"authors": [
{
"name": "Torben Hansen",
"email": "derhansen@gmail.com",
"homepage": "https://www.derhansen.com",
"role": "Developer"
}
],
"keywords": [
"TYPO3 CMS",
"form",
"spam protection",
"challenge response",
"extbase"
],
"license": [
"GPL-2.0-or-later"
],
"require": {
"typo3/cms-core": "^13.2",
"typo3/cms-extbase": "^13.2",
"typo3/cms-form": "^13.2",
"typo3/cms-frontend": "^13.2"
},
"replace": {
"typo3-ter/form-crshield": "self.version"
},
"autoload": {
"psr-4": {
"Derhansen\\FormCrshield\\": "Classes"
}
},
"extra": {
"typo3/cms": {
"extension-key": "form_crshield"
}
}
}