forked from icamys/php-sitemap-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 828 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
{
"name": "icamys/php-sitemap-generator",
"version": "2.0.1",
"description": "Simple PHP sitemap generator.",
"keywords": ["php", "sitemap", "generator", "psr-1", "psr-2", "psr-4"],
"homepage": "https://github.com/icamys/php-sitemap-generator",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Prisacari Dmitrii",
"email": "[email protected]",
"homepage": "http://github.com/icamys/"
}
],
"require": {
"php": "^7.2",
"ext-SPL": "*",
"ext-dom": "*",
"ext-simplexml": "*",
"ext-mbstring": "*",
"ext-zlib": "*",
"ext-curl": "*"
},
"autoload": {
"psr-4": {"Icamys\\SitemapGenerator\\": "src/"}
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"php-mock/php-mock-phpunit": "^2.5"
}
}