-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (39 loc) · 1.04 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
{
"name": "mediadreams/md_unreadnews",
"type": "typo3-cms-extension",
"description": "This TYPO3 extension adds unread information to the records of ext:news for frontend users.",
"license": "GPL-2.0-or-later",
"keywords": [
"typo3",
"extension",
"news",
"unread"
],
"homepage": "http://www.mediadreams.org",
"authors": [
{
"name": "Christoph Daecke",
"email": "typo3@mediadreams.org",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/cdaecke/md_unreadnews/issues",
"source": "https://github.com/cdaecke/md_unreadnews"
},
"require": {
"typo3/cms-core": "^11.5 || ^12.4",
"georgringer/news": ">=9.0,<13.0",
"georgringer/numbered-pagination": ">=1.0.1,<3.0.0"
},
"autoload": {
"psr-4": {
"Mediadreams\\MdUnreadnews\\": "Classes"
}
},
"extra": {
"typo3/cms": {
"extension-key": "md_unreadnews"
}
}
}