forked from pelazio/laravel-sitemap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
43 lines (43 loc) · 1.22 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
{
"name": "pelazio/laravel-sitemap",
"description": "Pelazio Sitemap package for Laravel.",
"homepage": "https://github.com/pelazio/laravel-sitemap",
"keywords": ["pelazio", "laravel", "php", "sitemap", "generator", "xml", "html", "google-news"],
"license": "MIT",
"authors": [
{
"name": "Pelazio",
"role": "Maintainer",
"homepage": "https://github.com/pelazio/laravel-sitemap"
}
],
"support": {
"issues": "https://github.com/pelazio/laravel-sitemap/issues",
"source": "https://github.com/pelazio/laravel-sitemap"
},
"require": {
"php": ">=7.4|^8",
"illuminate/support": "^8|^9",
"illuminate/filesystem": "^8|^9"
},
"require-dev": {
"laravel/framework": "^8.0|^9",
"phpunit/phpunit": "^9.3",
"orchestra/testbench-core": "^6.0",
"php-coveralls/php-coveralls" : "^2.2"
},
"autoload": {
"psr-0": {
"Pelazio\\Sitemap": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Pelazio\\Sitemap\\SitemapServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}