forked from tritum/repeatable_form_elements
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) 路 1.96 KB
/
Copy pathcomposer.json
File metadata and controls
64 lines (64 loc) 路 1.96 KB
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
60
61
62
63
64
{
"name": "move-elevator/typo3-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": "Konrad Michalik",
"email": "km@move-elevator.de",
"role": "Maintainer"
}
],
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
"psr/event-dispatcher": "^1.0",
"typo3/cms-core": "^13.4 || ^14.0",
"typo3/cms-extbase": "^13.4 || ^14.0",
"typo3/cms-form": "^13.4 || ^14.0"
},
"require-dev": {
"eliashaeussler/version-bumper": "^2.4 || ^3.0",
"phpunit/phpunit": "^11.0 || ^12.0",
"typo3/cms-base-distribution": "^13.4 || ^14.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"TRITUM\\RepeatableFormElements\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"TRITUM\\RepeatableFormElements\\Tests\\": "Tests/"
}
},
"config": {
"allow-plugins": {
"eliashaeussler/version-bumper": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"platform": {
"php": "8.2"
},
"sort-packages": true
},
"extra": {
"konradmichalik/php-cs-fixer-preset": {
"copyright": 2018
},
"typo3/cms": {
"extension-key": "repeatable_form_elements"
}
},
"scripts": {
"post-install-cmd": [
"@cgl install"
],
"cgl": "@composer -d Tests/CGL --",
"test": "@test:coverage --no-coverage",
"test:coverage": "XDEBUG_MODE=coverage phpunit -c phpunit.xml"
}
}