-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.08 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
{
"name": "itplusx/flexible-news",
"type": "typo3-cms-extension",
"description": "Flexible news extension to use pages as news articles",
"keywords": [
"TYPO3",
"TYPO3 CMS",
"extension",
"news",
"pages as news"
],
"homepage": "https://itplusx.de",
"support": {
"issues": "https://github.com/itplusx/flexible_news/issues"
},
"authors": [
{
"name": "Vaclav Janoch",
"email": "janoch@itplusx.de",
"role": "Developer"
},
{
"name": "Ramón Schlosser",
"email": "schlosser@itplusx.de",
"role": "Developer"
}
],
"license": "MIT",
"require": {
"typo3/cms-core": "^10.0 || ^11.0",
"itplusx/flexible-pages": "^2.2"
},
"replace": {
"typo3-ter/flexible-news": "self.version"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"extra": {
"branch-alias": {
"dev-main": "2.0.x-dev"
},
"typo3/cms": {
"extension-key": "flexible_news",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
}
}