-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 2.17 KB
/
composer.json
File metadata and controls
70 lines (70 loc) · 2.17 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
65
66
67
68
69
70
{
"name": "tritum/form-element-linked-checkbox",
"description": "Adds a new form element which allows the editor to create a checkbox with a linked label text. This is an extension for TYPO3 CMS.",
"license": "GPL-2.0-or-later",
"type": "typo3-cms-extension",
"authors": [
{
"name": "Björn Jacob",
"email": "bjoern.jacob@tritum.de",
"homepage": "https://www.tritum.de",
"role": "Developer"
},
{
"name": "Elias Häußler",
"email": "elias@haeussler.dev",
"homepage": "https://haeussler.dev",
"role": "Developer"
},
{
"name": "dreistrom.land",
"email": "hello@dreistrom.land",
"homepage": "https://dreistrom.land",
"role": "Developer"
}
],
"homepage": "https://github.com/tritum/form_element_linked_checkbox",
"require": {
"php": "^8.2",
"typo3/cms-core": "^13.4 || ^14.1",
"typo3/cms-form": "^13.4 || ^14.1",
"typo3/cms-frontend": "^13.4 || ^14.1"
},
"require-dev": {
"armin/editorconfig-cli": "^2.2",
"ergebnis/composer-normalize": "^2.23",
"helmich/typo3-typoscript-lint": "^3.1",
"phpstan/phpstan": "^1.3",
"saschaegerer/phpstan-typo3": "^1.0",
"typo3/coding-standards": "^0.8.0"
},
"autoload": {
"psr-4": {
"TRITUM\\FormElementLinkedCheckbox\\": "Classes/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"sort-packages": true
},
"extra": {
"typo3/cms": {
"extension-key": "form_element_linked_checkbox"
}
},
"scripts": {
"lint": [
"@lint:editorconfig",
"@lint:php",
"@lint:typoscript"
],
"lint:editorconfig": "ec --fix --git-only",
"lint:php": "php-cs-fixer fix -v",
"lint:typoscript": "typoscript-lint -c typoscript-lint.yml",
"sca": "phpstan analyse -c phpstan.neon"
}
}