-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomposer.json
54 lines (54 loc) · 1.67 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
{
"name": "tritum/repeatable-form-elements",
"description": "Adds a new form element which allows the editor to create new container elements with any type fields in them. In the frontend, a user can create any number of new containers. This is an extension for TYPO3 CMS.",
"license": "GPL-2.0-or-later",
"type": "typo3-cms-extension",
"authors": [
{
"name": "Ralf Zimmermann",
"email": "[email protected]",
"homepage": "https://dreistrom.land",
"role": "Developer"
},
{
"name": "Falko Linke",
"email": "[email protected]",
"homepage": "https://dreistrom.land",
"role": "Developer"
},
{
"name": "Elias Häußler",
"email": "[email protected]",
"homepage": "https://haeussler.dev",
"role": "Developer"
},
{
"name": "Christian Seyfferth",
"email": "[email protected]",
"homepage": "https://dreistrom.land",
"role": "Developer"
}
],
"require": {
"typo3/cms-core": "^12.4 || ^13.4",
"typo3/cms-extbase": "^12.4 || ^13.4",
"typo3/cms-form": "^12.4 || ^13.4"
},
"autoload": {
"psr-4": {
"TRITUM\\RepeatableFormElements\\": "Classes/"
}
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"sort-packages": true
},
"extra": {
"typo3/cms": {
"extension-key": "repeatable_form_elements"
}
}
}