-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (54 loc) · 1.91 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
{
"name": "portrino/t3cmd24",
"require": {
"typo3/cms-base-distribution": "^11.5",
"typo3/cms-introduction": "^4.4",
"bk2k/bootstrap-package": "^12.0",
"b13/container": "^2.0",
"helhum/typo3-console": "^7.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest"
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"bin-dir": "bin",
"github-protocols": [
"https"
],
"optimize-autoloader": true,
"preferred-install": "dist",
"secure-http": true
},
"extra": {
"typo3/cms": {
"web-dir": "public"
}
},
"scripts": {
"post-autoload-dump": [
"[ ! -d ./public/fileadmin/ ] && ./bin/typo3cms install:setup --force --no-interaction && ./bin/typo3cms extension:setup || echo 'Skipping forced TYPO3 auto-installation!'",
"[ -d ./public/fileadmin/ ] && composer run-script post-script:typo3-console-stack || echo 'Skipping post-script:typo3-console-stack - First install?!'",
"[ -d ./public/fileadmin/ ] && [ $TYPO3_PENDING_UPGRADE -eq 0 ] && composer run-script post-script:database-migrations || echo 'Skipping post-script:database-migrations - First install?!'"
],
"post-script:database-migrations": [
"@typo3cms:database-update-schema"
],
"post-script:typo3-console-stack": [
"@typo3cms:fix-folder-structure",
"@typo3cms:flush-system-cache"
],
"typo3cms:database-update-schema": [
"[ -e ./bin/typo3cms ] && ./bin/typo3cms database:updateschema *.add,*.change || echo 'No typo3cms binary found!'"
],
"typo3cms:fix-folder-structure": [
"[ -e ./bin/typo3cms ] && ./bin/typo3cms install:fixfolderstructure || echo 'No typo3cms binary found!'"
],
"typo3cms:flush-system-cache": [
"[ -e ./bin/typo3cms ] && ./bin/typo3cms cache:flushtags system || echo 'No typo3cms binary found!'"
]
}
}