-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
104 lines (101 loc) · 3.2 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "dmk/typo3-composer-webroot",
"description": "The TYPO3 Project webroot",
"type": "project",
"license": "proprietary",
"version": "0.11.5",
"authors": [
{
"name": "Michael Wagner",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"source": "https://github.com/DMKEBUSINESSGMBH/typo3-composer-webroot",
"issues": "https://github.com/DMKEBUSINESSGMBH/typo3-composer-webroot/issues"
},
"repositories": {
"packages": {
"type": "path",
"url": "packages/*"
},
"typo3": {
"type": "composer",
"url": "https://composer.typo3.org/"
}
},
"require": {
"helhum/typo3-console": "^8.0",
"typo3/cms-backend": "^12.4",
"typo3/cms-belog": "^12.4",
"typo3/cms-beuser": "^12.4",
"typo3/cms-core": "^12.4",
"typo3/cms-dashboard": "^12.4",
"typo3/cms-extbase": "^12.4",
"typo3/cms-extensionmanager": "^12.4",
"typo3/cms-felogin": "^12.4",
"typo3/cms-filelist": "^12.4",
"typo3/cms-fluid": "^12.4",
"typo3/cms-fluid-styled-content": "^12.4",
"typo3/cms-form": "^12.4",
"typo3/cms-frontend": "^12.4",
"typo3/cms-impexp": "^12.4",
"typo3/cms-info": "^12.4",
"typo3/cms-install": "^12.4",
"typo3/cms-recordlist": "^12.4",
"typo3/cms-rte-ckeditor": "^12.4",
"typo3/cms-seo": "^12.4",
"typo3/cms-setup": "^12.4",
"typo3/cms-sys-note": "^12.4",
"typo3/cms-t3editor": "^12.4",
"typo3/cms-tstemplate": "^12.4",
"typo3/cms-viewpage": "^12.4",
"typo3/cms-context-help": "^12.4",
"typo3/cms-cshmanual": "^12.4",
"typo3/cms-filemetadata": "^12.4",
"typo3/cms-indexed-search": "^12.4",
"typo3/cms-lowlevel": "^12.4",
"typo3/cms-recycler": "^12.4",
"typo3/cms-redirects": "^12.4",
"typo3/cms-reports": "^12.4",
"typo3/cms-scheduler": "^12.4",
"typo3/cms-sv": "^12.4",
"typo3/cms-version": "^12.4",
"typo3/cms-wizard-crpages": "^12.4",
"typo3/cms-wizard-sortpages": "^12.4",
"typo3/cms-workspaces": "^12.4",
"dmk/mklib": "^12.4.x-dev",
"dmk/mklog": "^12.4.x-dev",
"dmk/mksanitizedparameters": "^12.4.x-dev",
"dmk/mktools": "^12.4.x-dev"
},
"minimum-stability": "stable",
"config": {
"sort-packages": true,
"bin-dir": "bin",
"allow-plugins": {
"helhum/typo3-console-plugin": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"preferred-install": {
"dmk/*": "source",
"digedag/*": "source",
"*": "dist"
}
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": "./htdocs"
},
"composer-exit-on-patch-failure": true
},
"scripts": {
"post-install-cmd": [
"cp .htaccess_typo3 htdocs/typo3/.htaccess"
]
}
}