-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathcomposer.json
38 lines (38 loc) · 912 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
{
"name": "dmitryd/typo3-dd-googlesitemap",
"type": "typo3-cms-extension",
"description": "Google sitemaps for TYPO3",
"homepage": "https://github.com/dmitryd/typo3-dd_googlesitemap",
"license": "LGPL-3.0+",
"keywords": [
"TYPO3",
"CMS",
"Google",
"typo3",
"sitemap"
],
"require": {
"typo3/cms-core": ">=8.7.0,<9.0.0",
"php": ">=7.0.0"
},
"extra": {
"typo3/cms": {
"extension-key": "dd_googlesitemap"
}
},
"autoload": {
"psr-4": {
"DmitryDulepov\\DdGooglesitemap\\": "Classes"
}
},
"replace": {
"typo3-ter/dd-googlesitemap": "self.version"
},
"authors": [
{
"name": "Dmitry Dulepov",
"email": "[email protected]",
"homepage": "http://www.dmitry-dulepov.com/"
}
]
}