-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
80 lines (80 loc) · 2.22 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
{
"name": "typo3-contentblocks/content-blocks-site",
"description": "",
"require": {
"contentblocks/content-blocks": "^0.7.14",
"contentblocks/content-blocks-gui": "@dev",
"contentblocks/examples": "@dev",
"contentblocks/samples": "^1.0",
"contentblocks/samples-copy": "^1.0",
"helhum/typo3-console": "*",
"typo3/cms-about": "*",
"typo3/cms-adminpanel": "*",
"typo3/cms-belog": "*",
"typo3/cms-beuser": "*",
"typo3/cms-core": "^12.4",
"typo3/cms-felogin": "*",
"typo3/cms-filelist": "*",
"typo3/cms-fluid-styled-content": "*",
"typo3/cms-impexp": "*",
"typo3/cms-indexed-search": "*",
"typo3/cms-info": "*",
"typo3/cms-linkvalidator": "*",
"typo3/cms-lowlevel": "*",
"typo3/cms-recycler": "*",
"typo3/cms-redirects": "*",
"typo3/cms-reports": "*",
"typo3/cms-rte-ckeditor": "*",
"typo3/cms-scheduler": "*",
"typo3/cms-seo": "*",
"typo3/cms-setup": "*",
"typo3/cms-sys-note": "*",
"typo3/cms-t3editor": "*",
"typo3/cms-tstemplate": "*"
},
"repositories": [
{
"type": "path",
"url": "packages/*"
}
],
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"discard-changes": true,
"optimize-autoloader": true,
"sort-packages": true
},
"extra": {
},
"scripts": {
"post-autoload-dump": [
"@typo3 install:fixfolderstructure",
"[ $(echo 'SHOW TABLES' | mysql | wc -l ) -gt 0 ] && vendor/bin/typo3 database:updateschema || true",
"@typo3:flush"
],
"build-for:deployment": [
"@npm-content_blocks_gui ci",
"@npm-content_blocks_gui run build"
],
"build": [
"@npm-content_blocks_gui run build"
],
"build:watch": [
"Composer\\Config::disableProcessTimeout",
"@npm-content_blocks_gui run watch"
],
"build:serve": [
"Composer\\Config::disableProcessTimeout",
"@npm-content_blocks_gui run serve"
],
"npm-content_blocks_gui": "npm --prefix packages/content_blocks_gui/Build/frontend/",
"typo3": [
"Composer\\Config::disableProcessTimeout",
"typo3 --ansi"
],
"typo3:flush": "typo3 --ansi cache:warmup || true"
}
}