-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
60 lines (60 loc) · 1.48 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
{
"name": "julianhofmann/typo3-menu-comparison",
"description": "A comparison of different ways to create menus in TYPO3.",
"license": "GPL-2.0-or-later",
"type": "project",
"version": "1.0.0",
"require": {
"b13/menus": "^1.0",
"helhum/typo3-console": "^8.1",
"julianhofmann/sitepackage": "@dev",
"typo3/cms-backend": "^12.4",
"typo3/cms-belog": "^12.4",
"typo3/cms-beuser": "^12.4",
"typo3/cms-core": "^12.4",
"typo3/cms-extbase": "^12.4",
"typo3/cms-extensionmanager": "^12.4",
"typo3/cms-filelist": "^12.4",
"typo3/cms-fluid": "^12.4",
"typo3/cms-fluid-styled-content": "^12.4",
"typo3/cms-frontend": "^12.4",
"typo3/cms-info": "^12.4",
"typo3/cms-install": "^12.4",
"typo3/cms-lowlevel": "^12.4",
"typo3/cms-recordlist": "^12.4",
"typo3/cms-setup": "^12.4",
"typo3/cms-tstemplate": "^12.4"
},
"require-dev": {
"eliashaeussler/typo3-warming": "^2.0",
"internetgalerie/ig-slug": "^1.1",
"perftools/php-profiler": "^1.1",
"stefanfroemken/mysqlreport": "^3.0"
},
"repositories": [
{
"type": "path",
"url": "./packages/*"
}
],
"config": {
"allow-plugins": {
"php-http/discovery": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"bin-dir": ".Build/bin",
"platform": {
"php": "8.2"
},
"sort-packages": true,
"vendor-dir": ".Build/vendor"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"ignore-as-root": false,
"web-dir": ".Build/public"
}
}
}