forked from JAK0TA/formhandler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.45 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
{
"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"
],
"authors": [
{
"name": "Thomas Lüder",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"typo3/cms-core": "^12.4",
"typo3/cms-extbase": "^12.4",
"typo3/cms-fluid": "^12.4",
"typo3/cms-frontend": "^12.4",
"tecnickcom/tcpdf": "^6.6",
"parsecsv/php-parsecsv": "^1.3"
},
"require-dev": {
"typo3/cms-backend": "^12.4",
"symfony/mailer": "^6.3",
"phpstan/phpstan": "^1.10",
"saschaegerer/phpstan-typo3": "^1.8",
"helmich/typo3-typoscript-lint": "^3.1",
"friendsofphp/php-cs-fixer": "^3.18",
"google/recaptcha": "^1.3",
"jakota/documentation-builder": "dev-main"
},
"autoload": {
"psr-4": {
"Typoheads\\Formhandler\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Typoheads\\Formhandler\\Tests\\": "Tests"
}
},
"replace": {
"typo3-ter/formhandler": "self.version"
},
"extra": {
"typo3/cms": {
"extension-key": "formhandler"
}
},
"config": {
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
}
}