-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (65 loc) · 1.7 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
60
61
62
63
64
65
{
"name": "lia/lia_multicolumnwizard",
"type": "typo3-cms-extension",
"description": "This extension adds an new TCA-Type that allows to group fields into rows that can be multiplied.",
"authors": [
{
"name": "LOUIS TYPO3 Developers",
"email": "[email protected]",
"homepage": "https://www.louis.info",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"source": "https://github.com/LOUISINTERNET/lia_multicolumnwizard",
"docs": "https://github.com/LOUISINTERNET/lia_multicolumnwizard/blob/main/README.md",
"issues": "https://github.com/LOUISINTERNET/lia_multicolumnwizard/issues"
},
"license": "GPL-2.0-or-later",
"require": {
"typo3/cms-core": "^12.4"
},
"require-dev": {
"typo3/coding-standards": "^0.8.0",
"t3docs/fluid-documentation-generator": "^4.4"
},
"autoload": {
"psr-4": {
"LIA\\LiaMulticolumnwizard\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"LIA\\LiaMulticolumnwizard\\Tests\\": "Tests"
}
},
"replace": {
"lia/lia-multicolumnwizard": "self.version"
},
"extra": {
"typo3/cms": {
"extension-key": "lia_multicolumnwizard"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"scripts": {
"viewhelper-docs": [
"FLUID_DOCUMENTATION_OUTPUT_DIR=Documentation/ViewHelper .Build/bin/fluidDocumentation generate viewhelpers_config.json"
],
"build-docs": [
"docker run --rm --pull always -v $(pwd):/project -it ghcr.io/typo3-documentation/render-guides:latest --config=Documentation"
],
"build-full-doc": [
"@viewhelper-docs",
"@build-docs"
]
}
}