-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
70 lines (70 loc) · 1.92 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
68
69
70
{
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "7.4.10"
},
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"cweagans/composer-patches": true,
"composer/package-versions-deprecated": true,
"rector/extension-installer": true
}
},
"repositories": [
{
"type": "path",
"url": "packages/*"
}
],
"require": {
"ext-json": "*",
"ext-pdo": "*",
"php": ">=7.4.0",
"typo3/cms-composer-installers": "*",
"typo3/cms-core": "^11.5",
"typo3/cms-backend": "^11.5",
"typo3/cms-beuser": "^11.5",
"typo3/cms-extbase": "^11.5",
"typo3/cms-extensionmanager": "^11.5",
"typo3/cms-filelist": "^11.5",
"typo3/cms-fluid": "^11.5",
"typo3/cms-fluid-styled-content": "^11.5",
"typo3/cms-frontend": "^11.5",
"typo3/cms-info": "^11.5",
"typo3/cms-install": "^11.5",
"typo3/cms-lowlevel": "^11.5",
"typo3/cms-recordlist": "^11.5",
"typo3/cms-rte-ckeditor": "^11.5",
"typo3/cms-setup": "^11.5",
"typo3/cms-t3editor": "^11.5",
"typo3/cms-tstemplate": "^11.5",
"typo3/cms-viewpage": "^11.5",
"helhum/typo3-console": "*",
"bk2k/bootstrap-package": "*",
"workshop/blog": "@dev"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": "public",
"root-dir": "public"
},
"helhum/typo3-console": {
"install-extension-dummy": "0"
}
},
"scripts": {
"post-install-cmd": [
],
"addtrustedhostpattern": "@php vendor/bin/typo3cms configuration:set SYS/trustedHostsPattern '.*'",
"importdata": "@php vendor/bin/typo3cms database:import < init.sql",
"killcache": "@php vendor/bin/typo3cms cache:flush",
"t3update": "@php vendor/bin/typo3cms install:extensionsetupifpossible"
},
"require-dev": {
"rector/rector": "^0.12.21"
}
}