forked from TYPO3-Headless/pwa-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.83 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
66
67
{
"repositories": [
{
"type": "composer",
"url": "https://composer.typo3.org/"
},
{
"type": "path",
"url": "packages/*",
"options": {
"symlink": true
}
}
],
"name": "friendsoftypo/pwademo",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Łukasz Uznański",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"friendsoftypo3/headless": "^v3",
"helhum/typo3-console": "^7.0.3",
"mask/mask": "^7.2",
"pwademo/site-package": "^1",
"typo3/cms-belog": "^11.5",
"typo3/cms-beuser": "^11.5",
"typo3/cms-felogin": "^11.5",
"typo3/cms-filelist": "^11.5",
"typo3/cms-filemetadata": "^11.5",
"typo3/cms-fluid-styled-content": "^11.5",
"typo3/cms-form": "^11.5",
"typo3/cms-info": "^11.5",
"typo3/cms-linkvalidator": "^11.5",
"typo3/cms-lowlevel": "^11.5",
"typo3/cms-recycler": "^11.5",
"typo3/cms-redirects": "^11.5",
"typo3/cms-reports": "^11.5",
"typo3/cms-rte-ckeditor": "^11.5",
"typo3/cms-scheduler": "^11.5",
"typo3/cms-seo": "^11.5",
"typo3/cms-setup": "^11.5",
"typo3/cms-sys-note": "^11.5",
"typo3/cms-t3editor": "^11.5",
"typo3/cms-tstemplate": "^11.5",
"typo3/cms-viewpage": "^11.5",
"typo3/cms-workspaces": "^11.5",
"typo3/minimal": "^11.5"
},
"config": {
"sort-packages": true,
"bin-dir": "bin",
"vendor-dir": "vendor",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"extra": {
"typo3/minimal": {
"web-dir": "public"
}
}
}