forked from LaraPalCom/laravel-sitemap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.44 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
51
52
53
54
{
"name": "laravelium/sitemap",
"description": "Laravelium Sitemap package for Laravel.",
"homepage": "https://laravelium.com",
"keywords": [
"laravelium",
"laravel",
"php",
"sitemap",
"generator",
"xml",
"html",
"google-news"
],
"license": "MIT",
"authors": [
{
"name": "Rumen Damyanov",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://darumen.com"
}
],
"support": {
"issues": "https://github.com/Laravelium/laravel-sitemap/issues",
"source": "https://github.com/Laravelium/laravel-sitemap",
"wiki": "https://github.com/Laravelium/laravel-sitemap/wiki"
},
"require": {
"php": "^8.0 || ^8.1 || ^8.2 || ^8.3",
"illuminate/support": "^9.0 || ^10.0 || ^11.0",
"illuminate/filesystem": "^9.0 || ^10.0 || ^11.0"
},
"require-dev": {
"laravel/framework": "^9.0 || ^10.0 || ^11.0",
"phpunit/phpunit": "^9.3",
"orchestra/testbench-core": "^6.0",
"php-coveralls/php-coveralls": "^2.2"
},
"autoload": {
"psr-0": {
"Laravelium\\Sitemap": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Laravelium\\Sitemap\\SitemapServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}