forked from JAK0TA/formhandler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.27 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
{
"name": "jakota/formhandler",
"type": "typo3-cms-extension",
"description": "The swiss army knife for all kinds of mailforms, completely new written using the MVC concept. Result: Flexibility, Flexibility, Flexibility :-).",
"homepage": "https://github.com/JAK0TA/formhandler",
"license": "GPL-2.0-or-later",
"require": {
"php": ">=8.0",
"typo3/cms-core": "^11.5",
"tecnickcom/tcpdf": "^6.0",
"typo3/cms-extbase": "^11.5",
"typo3/cms-fluid": "^11.5",
"typo3/cms-frontend": "^11.5",
"parsecsv/php-parsecsv": "^1.3"
},
"require-dev": {
"typo3/cms-backend": "^11.5",
"symfony/mailer": "^5.3",
"phpstan/phpstan": "^1.3",
"saschaegerer/phpstan-typo3": "^1.8",
"helmich/typo3-typoscript-lint": "^2.5",
"sjbr/sr-freecap": "^11.5",
"friendsofphp/php-cs-fixer": "^3.9",
"google/recaptcha": "^1.2"
},
"autoload": {
"psr-4": {
"Typoheads\\Formhandler\\": "Classes"
},
"classmap": [
"pi1/class.tx_formhandler_pi1.php"
]
},
"replace": {
"typo3-ter/formhandler": "self.version"
},
"extra": {
"typo3/cms": {
"extension-key": "formhandler"
}
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
}
}