-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.86 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.86 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
{
"name": "laxap/bootstrap-grids",
"type": "typo3-cms-extension",
"description": "Predefined gridelements Bootstrap 5 content elements: column grids, grids for simple accordions, and tabs.",
"license": "GPL-2.0-or-later",
"keywords": ["typo3", "TYPO3 CMS", "bootstrap", "gridelements"],
"homepage": "https://extensions.typo3.org/extension/bootstrap_grids/",
"authors": [
{
"name": "Pascal Mayer",
"role": "Original author and maintainer until August 2023",
"email": "typo3@simple.ch"
},
{
"name": "Rozbeh Chiryai Sharahi",
"role": "Maintainer starting Auguest 2023",
"email": "rozbeh.sharahi+bootstrap_grids@gmail.com"
}
],
"support": {
"issues": "https://github.com/laxap/bootstrap_grids/issues"
},
"require": {
"php": "^8.1 || ^8.2 || ^8.3 || ^8.4",
"typo3/cms-core": "^12 || ^13",
"gridelementsteam/gridelements": "^12 || ^13 || dev-ea_13-0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"typo3/cms-install": "^12 || ^13",
"typo3/cms-setup": "^12 || ^13",
"typo3/cms-tstemplate": "^12 || ^13",
"typo3/cms-fluid": "^12 || ^13",
"typo3/cms-fluid-styled-content": "^12 || ^13",
"typo3/cms-filelist": "^12 || ^13",
"typo3/cms-lowlevel": "^12 || ^13",
"helhum/typo3-console": "^8.2"
},
"scripts": {
"post-install-cmd": [
"vendor/bin/typo3 install:extensionsetupifpossible",
"vendor/bin/typo3 install:fixfolderstructure",
"vendor/bin/typo3 cache:flush"
]
},
"replace": {
"typo3-ter/bootstrap-grids": "self.version"
},
"autoload": {
"psr-4": {
"Laxap\\BootstrapGrids\\": "Classes"
}
},
"extra": {
"typo3/cms": {
"extension-key": "bootstrap_grids"
}
},
"config": {
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
}
}