forked from cyberhouse/news_importicsxml
-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
47 lines (47 loc) · 994 Bytes
/
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
{
"name": "georgringer/news-importicsxml",
"keywords": [
"TYPO3",
"extension",
"news",
"import",
"ics",
"xml"
],
"authors": [
{
"name": "Georg Ringer",
"role": "Developer",
"homepage": "https://ringer.it"
}
],
"type": "typo3-cms-extension",
"description": "Versatile news import from ICS + XML (local files or remote URLs) including images and category mapping",
"homepage": "https://ringer.it",
"license": [
"GPL-2.0-or-later"
],
"require": {
"georgringer/news": "^11.4",
"typo3/cms-scheduler": "^11.5 || ^12.4",
"typo3/cms-core": "^11.5 || ^12.4"
},
"autoload": {
"psr-4": {
"GeorgRinger\\NewsImporticsxml\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"GeorgRinger\\NewsImporticsxml\\Tests\\": "Tests"
}
},
"replace": {
"typo3-ter/news-importicsxml": "self.version"
},
"extra": {
"typo3/cms": {
"extension-key": "news_importicsxml"
}
}
}