-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
47 lines (47 loc) · 1.33 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
{
"name": "bringyourownideas/laravel-sitemap",
"description": "A simple website crawler & sitemap generator without a headless browser for Laravel 5.8+",
"keywords": [
"laravel",
"laravel sitemap",
"site crawler",
"sitemap generator",
"sitemap.xml"
],
"homepage": "https://bringyourownideas.com/blog/simple-laravel-sitemap-generator",
"support": {
"issues": "https://github.com/bringyourownideas/laravel-sitemap/issues",
"source": "https://github.com/bringyourownideas/laravel-sitemap"
},
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Peter Thaleikis",
"homepage": "https://peterthaleikis.com"
}
],
"require": {
"php": "^7.3|^8.0",
"laravel/framework": "^6.20.12||^7.30.3||^8.4||^9.2",
"guzzlehttp/guzzle": "^7.2",
"vdb/php-spider": "^v0.6.3",
"nesbot/carbon": "^2.41",
"spatie/robots-txt": "^1.0||^2.0"
},
"require-dev": {
"symfony/thanks": "^1.0"
},
"autoload": {
"psr-4": {
"BringYourOwnIdeas\\LaravelSitemap\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"BringYourOwnIdeas\\LaravelSitemap\\SitemapServiceProvider"
]
}
}
}