-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
42 lines (42 loc) · 1.14 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
{
"name": "mediadreams/md_news_author",
"type": "typo3-cms-extension",
"description": "Adds one or more authors to a tx_news record, show a list of all authors and display a detail page of the author containing the attached news entries.",
"license": "GPL-2.0-or-later",
"keywords": [
"TYPO3",
"TYPO3 CMS",
"extension",
"author",
"news author",
"news",
"tx_news",
"blog author"
],
"homepage": "http://www.mediadreams.org",
"authors": [
{
"name": "Christoph Daecke",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/cdaecke/md_news_author/issues",
"source": "https://github.com/cdaecke/md_news_author"
},
"require": {
"typo3/cms-core": ">=12.0,<14.0",
"georgringer/news": ">=10.0,<13.0",
"georgringer/numbered-pagination": ">=1.0.1,<3.0.0"
},
"extra": {
"typo3/cms": {
"extension-key": "md_news_author"
}
},
"autoload": {
"psr-4": {
"Mediadreams\\MdNewsAuthor\\": "Classes"
}
}
}