-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
133 lines (133 loc) · 4.32 KB
/
composer.json
File metadata and controls
133 lines (133 loc) · 4.32 KB
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "t3kit/t3kit-starter",
"description": "Starter point for t3kit project. t3kit and TYPO3 dependencies, folder structure, custom site configurations, local environment based on Docker, CI/CD configs",
"type": "project",
"keywords": [
"t3kit",
"typo3",
"cms",
"starter",
"t3kit10",
"t3kit11"
],
"homepage": "http://t3kit.com",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "t3kit Community",
"homepage": "https://github.com/t3kit"
}
],
"support": {
"issues": "https://github.com/t3kit/t3kit-starter/issues",
"forum": "https://typo3.slack.com/messages/t3kit",
"source": "https://github.com/t3kit/t3kit-starter",
"docs": "https://github.com/t3kit/t3kit-starter"
},
"repositories": [
{
"type": "path",
"url": "extensions/*"
}
],
"require": {
"helhum/typo3-console": "^7.0.2",
"t3kit/t3kit": "dev-master",
"typo3/cms-about": "^11.5.8",
"typo3/cms-adminpanel": "^11.5.8",
"typo3/cms-backend": "^11.5.8",
"typo3/cms-belog": "^11.5.8",
"typo3/cms-beuser": "^11.5.8",
"typo3/cms-core": "^11.5.8",
"typo3/cms-dashboard": "^11.5.8",
"typo3/cms-extbase": "^11.5.8",
"typo3/cms-extensionmanager": "^11.5.8",
"typo3/cms-felogin": "^11.5.8",
"typo3/cms-filelist": "^11.5.8",
"typo3/cms-filemetadata": "^11.5.8",
"typo3/cms-fluid": "^11.5.8",
"typo3/cms-form": "^11.5.8",
"typo3/cms-frontend": "^11.5.8",
"typo3/cms-impexp": "^11.5.8",
"typo3/cms-info": "^11.5.8",
"typo3/cms-install": "^11.5.8",
"typo3/cms-linkvalidator": "^11.5.8",
"typo3/cms-lowlevel": "^11.5.8",
"typo3/cms-opendocs": "^11.5.8",
"typo3/cms-recordlist": "^11.5.8",
"typo3/cms-recycler": "^11.5.8",
"typo3/cms-redirects": "^11.5.8",
"typo3/cms-reports": "^11.5.8",
"typo3/cms-rte-ckeditor": "^11.5.8",
"typo3/cms-scheduler": "^11.5.8",
"typo3/cms-seo": "^11.5.8",
"typo3/cms-setup": "^11.5.8",
"typo3/cms-sys-note": "^11.5.8",
"typo3/cms-t3editor": "^11.5.8",
"typo3/cms-tstemplate": "^11.5.8",
"typo3/cms-viewpage": "^11.5.8",
"typo3-local/theme-newcustomproject": "dev-master"
},
"require-dev": {
"editorconfig-checker/editorconfig-checker": "^10.3",
"squizlabs/php_codesniffer": "^3.6.0",
"helmich/typo3-typoscript-lint": "^2.5.2"
},
"suggest": {
"platformsh/config-reader": "It provides convenience wrappers for accessing the Platform.sh environment variables",
"yoast-seo-for-typo3/yoast_seo": "Yoast SEO for TYPO3",
"friendsoftypo3/frontend-editing": "Enable editors to work with the content in the most intuitive way possible",
"apache-solr-for-typo3/solr": "Apache Solr for TYPO3"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"scripts": {
"typo3-cms-scripts": [
],
"pre-install-cmd": [
"composer validate --no-check-all --strict",
"composer check-platform-reqs"
],
"post-install-cmd": [
],
"post-update-cmd": [
],
"post-autoload-dump": [
],
"post-create-project-cmd": [
],
"lint-php": "phpcs --colors",
"lint-yaml": "yaml-lint --ansi config/ .localconf/",
"lint-editorconfig": "ec -exclude LICENSE.txt",
"lint-typoscript": "typoscript-lint --ansi --fail-on-warnings",
"test": [
"@lint-php",
"@lint-yaml",
"@lint-editorconfig",
"@lint-typoscript"
],
"env": "cp .localconf/local.env .env",
"dbup": "./.localconf/db/setupdb.sh",
"dbre": "./.localconf/db/restoredb.sh",
"dbp": "./.localconf/db/packdb.sh",
"syncdb": "./.localconf/platformsh/scripts/db/syncdb.sh",
"syncfiles": "./.localconf/platformsh/scripts/files/syncfiles.sh",
"syncall": [
"@syncdb",
"@syncfiles"
],
"ddev-config": "bash .localconf/community/ddev/setupddev.sh",
"t3kit-upgrade": "git merge -X theirs --squash --allow-unrelated-histories t3kit/master",
"cf": "docker compose exec -T -u www-data web /var/www/html/vendor/bin/typo3 cache:flush",
"ci": "./.localconf/composer/sshauth.sh composer i --prefer-install=auto",
"co": "./.localconf/composer/sshauth.sh composer",
"ctest": "./.localconf/composer/sshauth.sh composer test"
}
}