-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.09 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
{
"repositories": [
{
"type": "composer",
"url": "https://composer.typo3.org/"
},
{
"type": "vcs",
"url": "https://github.com/cseifert/typo3-typoscript-lint.git"
}
],
"name": "typo3/cms-base-distribution",
"description" : "TYPO3 CMS Base Distribution",
"license": "GPL-2.0+",
"require": {
"typo3/cms": "8.7.*",
"typo3-ter/news": "^6.0.0",
"gridelementsteam/gridelements": "dev-master",
"typo3-ter/realurl": "2.2.0"
},
"require-dev": {
"helmich/typo3-typoscript-lint": "dev-master"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": "web"
}
},
"autoload": {
"psr-4": {
"Medienagenten\\Siteconfig\\": "web/typo3conf/ext/siteconfig/Classes"
}
},
"scripts": {
"post-install-cmd": [
"curdir=`pwd`; rm -f `pwd`/web/index.php; cp `pwd`/vendor/typo3/cms/index.php `pwd`/web/index.php; cd $curdir"
],
"post-update-cmd": [
"curdir=`pwd`; rm -f `pwd`/web/index.php; cp `pwd`/vendor/typo3/cms/index.php `pwd`/web/index.php; cd $curdir"
]
}
}