-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
78 lines (78 loc) · 1.97 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
{
"name": "phifa/typo3stack",
"description": "TYPO3 CMS Base Distribution and Site Skeleton",
"config": {
"sort-packages": true,
"platform": {
"php": "7.2"
},
"preferred-install": {
"*": "dist"
}
},
"repositories": [
{
"type": "composer",
"url": "https://packagist.org/"
}
],
"require": {
"helhum/dotenv-connector": "^1.0.0",
"helhum/typo3-console": "^5.6",
"phifa/template": "dev-master",
"phifa/template_site1": "dev-master",
"typo3/cms-belog": "^9.5",
"typo3/cms-beuser": "^9.5",
"typo3/cms-fluid-styled-content": "^9.5",
"typo3/cms-form": "^9.5",
"typo3/cms-impexp": "^9.5",
"typo3/cms-info": "^9.5",
"typo3/cms-lowlevel": "^9.5",
"typo3/cms-opendocs": "^9.5",
"typo3/cms-recycler": "^9.5",
"typo3/cms-reports": "^9.5",
"typo3/cms-rte-ckeditor": "^9.5",
"typo3/cms-scheduler": "^9.5",
"typo3/cms-setup": "^9.5",
"typo3/cms-sys-note": "^9.5",
"typo3/cms-tstemplate": "^9.5",
"typo3/cms-seo": "^9.5",
"typo3/minimal": "^9.5"
},
"require-dev": {},
"extra": {
"typo3/cms": {
"web-dir": "public"
},
"helhum/typo3-console": {
"install-binary": false,
"install-extension-dummy": false
},
"helhum/dotenv-connector": {
"cache-dir": "var/cache"
}
},
"autoload": {},
"scripts": {
"post-create-project-cmd": [
"\n run: ./post-create-project-cmd.sh (On OSX first: chmod +x ./post_create_project.sh) \n"
],
"package-states": [
"typo3cms install:generatepackagestates"
],
"folder-structure": [
"typo3cms install:fixfolderstructure"
],
"pre-deploy": [
"# Scripts here will be executed by Surf after composer install"
],
"post-autoload-dump": [
"@package-states",
"@folder-structure",
"typo3cms install:extensionsetupifpossible"
],
"post-install-cmd": [
"cd build/template_site1 && npm install && npm run-script build"
]
}
}