-
Notifications
You must be signed in to change notification settings - Fork 38
/
composer.json
45 lines (45 loc) · 1.23 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
{
"name": "laxap/bootstrap-grids",
"type": "typo3-cms-extension",
"description": "Gridelements for bootstrap v5. Column grids, tabs and accordion.",
"license": "GPL-2.0-or-later",
"version": "3.0.0",
"keywords": ["typo3", "TYPO3 CMS", "bootstrap", "gridelements"],
"homepage": "https://extensions.typo3.org/extension/bootstrap_grids/",
"support": {
"issues": "https://github.com/laxap/bootstrap_grids/issues"
},
"require": {
"php": "^7.4 || ^8.0",
"typo3/cms-core": "^10.4 || ^11.5",
"gridelementsteam/gridelements": "^10 || ^11"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"typo3/cms-install": "^10 || ^11",
"typo3/cms-setup": "^10 || ^11",
"typo3/cms-tstemplate": "^10 || ^11",
"typo3/cms-fluid": "^10 || ^11",
"typo3/cms-fluid-styled-content": "^10 || ^11",
"typo3/cms-filelist": "^10 || ^11"
},
"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
}
}
}