-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.21 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
{
"name": "fgtclb/page-backend-layout",
"type": "typo3-cms-extension",
"description": "Helper for Backend layout overrides based on page doktype",
"minimum-stability": "stable",
"license": "GPL-2.0-or-later",
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "page_backend_layout",
"ignore-as-root": false,
"web-dir": ".Build/public",
"app-dir": ".Build"
}
},
"require": {
"php": "^7.4 || ^8.0 || ^8.1 || ^8.2",
"typo3/cms-core": "^11.5"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.14",
"phpstan/phpstan": "^1.10",
"saschaegerer/phpstan-typo3": "^1.8",
"typo3/cms-extensionmanager": "^11.5",
"typo3/cms-fluid-styled-content": "^11.5",
"typo3/cms-fluid": "^11.5",
"typo3/cms-frontend": "^11.5",
"typo3/cms-info": "^11.5",
"typo3/cms-lowlevel": "^11.5",
"typo3/cms-tstemplate": "^11.5",
"typo3/coding-standards": "^0.6.1"
},
"autoload": {
"psr-4": {
"FGTCLB\\PageBackendLayout\\": "Classes"
}
}
}