-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
50 lines (50 loc) · 1.38 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": "homm/hommxmlsitemap",
"description": "Craft CMS Plugin to provide and manage XML Sitemap",
"type": "craft-plugin",
"version": "1.0.3",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"sitemap",
"seo",
"sitemap.xml",
"webmaster tools"
],
"license": "MIT",
"authors": [
{
"name": "Benjamin Ammann",
"homepage": "https://github.com/ammannbe"
},
{
"name": "Dolphiq",
"email": "[email protected]",
"homepage": "https://dolphiq.nl/"
}
],
"require": {
"php": "^8.0|^8.1",
"craftcms/cms": "^4.0.0",
"jaybizzle/crawler-detect": "^v1.2",
"ext-dom": "*",
"ext-json": "*",
"ext-fileinfo": "*"
},
"autoload": {
"psr-4": {
"homm\\hommxmlsitemap\\": "src/"
}
},
"extra": {
"name": "HOMM XML Sitemap",
"handle": "hommxmlsitemap",
"developer": "HOMM interactive",
"developerUrl": "https://github.com/HOMMinteractive",
"documentationUrl": "https://github.com/HOMMinteractive/hommxmlsitemap/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/HOMMinteractive/hommxmlsitemap/master/CHANGELOG.md",
"class": "homm\\hommxmlsitemap\\HOMMXMLSitemap"
}
}