-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 961 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 961 Bytes
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
{
"name": "webrium/sitemap",
"description": "A production-ready PHP library for generating XML sitemaps with support for images, videos, hreflang, gzip compression, and automatic sitemap splitting.",
"type": "library",
"license": "MIT",
"keywords": [
"sitemap",
"xml-sitemap",
"sitemap-generator",
"seo",
"php"
],
"authors": [
{
"name": "Webrium",
"homepage": "https://github.com/webrium"
}
],
"require": {
"php": "^8.1",
"ext-xmlwriter": "*",
"ext-zlib": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"Webrium\\Sitemap\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Webrium\\Sitemap\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable"
}