{"id":13593897,"url":"https://github.com/spatie/laravel-sitemap","last_synced_at":"2025-05-14T22:02:31.216Z","repository":{"id":10440556,"uuid":"65549848","full_name":"spatie/laravel-sitemap","owner":"spatie","description":"Create and generate sitemaps with ease","archived":false,"fork":false,"pushed_at":"2025-04-15T16:03:40.000Z","size":648,"stargazers_count":2444,"open_issues_count":0,"forks_count":295,"subscribers_count":34,"default_branch":"main","last_synced_at":"2025-05-07T21:13:24.321Z","etag":null,"topics":["google","laravel","php","seo","sitemap","xml"],"latest_commit_sha":null,"homepage":"https://freek.dev/557-automatically-generate-a-sitemap-in-laravel","language":"PHP","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/spatie.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"custom":"https://spatie.be/open-source/support-us"}},"created_at":"2016-08-12T11:56:26.000Z","updated_at":"2025-05-04T03:42:39.000Z","dependencies_parsed_at":"2023-02-16T03:55:17.933Z","dependency_job_id":"f3b65c04-b006-4dcf-8928-c7fa1c1ed2b5","html_url":"https://github.com/spatie/laravel-sitemap","commit_stats":{"total_commits":289,"total_committers":64,"mean_commits":4.515625,"dds":"0.44982698961937717","last_synced_commit":"1703b86065a515dafd166ec755513d15aa172565"},"previous_names":[],"tags_count":75,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spatie%2Flaravel-sitemap","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spatie%2Flaravel-sitemap/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spatie%2Flaravel-sitemap/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spatie%2Flaravel-sitemap/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/spatie","download_url":"https://codeload.github.com/spatie/laravel-sitemap/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254235685,"owners_count":22036962,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["google","laravel","php","seo","sitemap","xml"],"created_at":"2024-08-01T16:01:26.009Z","updated_at":"2025-05-14T22:02:30.782Z","avatar_url":"https://github.com/spatie.png","language":"PHP","funding_links":["https://spatie.be/open-source/support-us","https://www.patreon.com/spatie"],"categories":["PHP"],"sub_categories":[],"readme":"\u003cdiv align=\"left\"\u003e\n    \u003ca href=\"https://spatie.be/open-source?utm_source=github\u0026utm_medium=banner\u0026utm_campaign=laravel-sitemap\"\u003e\n      \u003cpicture\u003e\n        \u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"https://spatie.be/packages/header/laravel-sitemap/html/dark.webp\"\u003e\n        \u003cimg alt=\"Logo for laravel-sitemap\" src=\" https://spatie.be/packages/header/laravel-sitemap/html/light.webp\" height=\"190\"\u003e\n      \u003c/picture\u003e\n    \u003c/a\u003e\n\n\u003ch1\u003eGenerate sitemaps with ease\u003c/h1\u003e\n\n[![Latest Version on Packagist](https://img.shields.io/packagist/v/spatie/laravel-sitemap.svg?style=flat-square)](https://packagist.org/packages/spatie/laravel-sitemap)\n[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)\n[![Test Status](https://img.shields.io/github/actions/workflow/status/spatie/laravel-sitemap/run-tests.yml?label=tests)](https://github.com/spatie/laravel-sitemap/actions/workflows/run-tests.yml)\n[![Code Style Status](https://img.shields.io/github/actions/workflow/status/spatie/laravel-sitemap/php-cs-fixer.yml?label=code%20style)](https://github.com/spatie/laravel-sitemap/actions/workflows/php-cs-fixer.yml)\n[![Total Downloads](https://img.shields.io/packagist/dt/spatie/laravel-sitemap.svg?style=flat-square)](https://packagist.org/packages/spatie/laravel-sitemap)\n\n\u003c/div\u003e\n\nThis package can generate a sitemap without you having to add urls to it manually. This works by crawling your entire site.\n\n```php\nuse Spatie\\Sitemap\\SitemapGenerator;\n\nSitemapGenerator::create('https://example.com')-\u003ewriteToFile($path);\n```\n\nYou can also create your sitemap manually:\n\n```php\nuse Carbon\\Carbon;\nuse Spatie\\Sitemap\\Sitemap;\nuse Spatie\\Sitemap\\Tags\\Url;\n\nSitemap::create()\n    -\u003eadd(Url::create('/home')\n        -\u003esetLastModificationDate(Carbon::yesterday()))\n    -\u003eadd(...)\n    -\u003ewriteToFile($path);\n```\n\nOr you can have the best of both worlds by generating a sitemap and then adding more links to it:\n\n```php\nSitemapGenerator::create('https://example.com')\n    -\u003egetSitemap()\n    -\u003eadd(Url::create('/extra-page')\n        -\u003esetLastModificationDate(Carbon::yesterday()))\n    -\u003eadd(...)\n    -\u003ewriteToFile($path);\n```\n\nYou can also control the maximum depth of the sitemap:\n```php\nSitemapGenerator::create('https://example.com')\n    -\u003econfigureCrawler(function (Crawler $crawler) {\n        $crawler-\u003esetMaximumDepth(3);\n    })\n    -\u003ewriteToFile($path);\n```\n\nThe generator has [the ability to execute JavaScript](https://github.com/spatie/laravel-sitemap#executing-javascript) on each page so links injected into the dom by JavaScript will be crawled as well.\n\nYou can also use one of your available filesystem disks to write the sitemap to.\n```php\nSitemapGenerator::create('https://example.com')-\u003egetSitemap()-\u003ewriteToDisk('public', 'sitemap.xml');\n```\n\nYou may need to set the file visibility on one of your sitemaps. For example, if you are writing a sitemap to S3 that you want to be publicly available. You can set the third parameter to `true` to make it public. Note: This can only be used on the `-\u003ewriteToDisk()` method.\n```php\nSitemapGenerator::create('https://example.com')-\u003egetSitemap()-\u003ewriteToDisk('public', 'sitemap.xml', true);\n```\n\nYou can also add your models directly by implementing the `\\Spatie\\Sitemap\\Contracts\\Sitemapable` interface.\n\n```php\nuse Spatie\\Sitemap\\Contracts\\Sitemapable;\nuse Spatie\\Sitemap\\Tags\\Url;\n\nclass Post extends Model implements Sitemapable\n{\n    public function toSitemapTag(): Url | string | array\n    {\n        // Simple return:\n        return route('blog.post.show', $this);\n\n        // Return with fine-grained control:\n        return Url::create(route('blog.post.show', $this))\n            -\u003esetLastModificationDate(Carbon::create($this-\u003eupdated_at));\n    }\n}\n```\n\nNow you can add a single post model to the sitemap or even a whole collection.\n```php\nuse Spatie\\Sitemap\\Sitemap;\n\nSitemap::create()\n    -\u003eadd($post)\n    -\u003eadd(Post::all());\n```\n\nThis way you can add all your pages super fast without the need to crawl them all.\n\n## Support us\n\n[\u003cimg src=\"https://github-ads.s3.eu-central-1.amazonaws.com/laravel-sitemap.jpg?t=1\" width=\"419px\" /\u003e](https://spatie.be/github-ad-click/laravel-sitemap)\n\nWe invest a lot of resources into creating [best in class open source packages](https://spatie.be/open-source). You can support us by [buying one of our paid products](https://spatie.be/open-source/support-us).\n\nWe highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on [our contact page](https://spatie.be/about-us). We publish all received postcards on [our virtual postcard wall](https://spatie.be/open-source/postcards).\n\n## Installation\n\nFirst, install the package via composer:\n\n``` bash\ncomposer require spatie/laravel-sitemap\n```\n\nThe package will automatically register itself.\n\nIf you want to update your sitemap automatically and frequently you need to perform [some extra steps](https://github.com/spatie/laravel-sitemap#generating-the-sitemap-frequently).\n\n## Configuration\n\nYou can override the default options for the crawler. First publish the configuration:\n\n```bash\nphp artisan vendor:publish --provider=\"Spatie\\Sitemap\\SitemapServiceProvider\" --tag=sitemap-config\n```\n\nThis will copy the default config to `config/sitemap.php` where you can edit it.\n\n```php\nuse GuzzleHttp\\RequestOptions;\nuse Spatie\\Sitemap\\Crawler\\Profile;\n\nreturn [\n\n    /*\n     * These options will be passed to GuzzleHttp\\Client when it is created.\n     * For in-depth information on all options see the Guzzle docs:\n     *\n     * http://docs.guzzlephp.org/en/stable/request-options.html\n     */\n    'guzzle_options' =\u003e [\n\n        /*\n         * Whether or not cookies are used in a request.\n         */\n        RequestOptions::COOKIES =\u003e true,\n\n        /*\n         * The number of seconds to wait while trying to connect to a server.\n         * Use 0 to wait indefinitely.\n         */\n        RequestOptions::CONNECT_TIMEOUT =\u003e 10,\n\n        /*\n         * The timeout of the request in seconds. Use 0 to wait indefinitely.\n         */\n        RequestOptions::TIMEOUT =\u003e 10,\n\n        /*\n         * Describes the redirect behavior of a request.\n         */\n        RequestOptions::ALLOW_REDIRECTS =\u003e false,\n    ],\n    \n    /*\n     * The sitemap generator can execute JavaScript on each page so it will\n     * discover links that are generated by your JS scripts. This feature\n     * is powered by headless Chrome.\n     */\n    'execute_javascript' =\u003e false,\n    \n    /*\n     * The package will make an educated guess as to where Google Chrome is installed. \n     * You can also manually pass it's location here.\n     */\n    'chrome_binary_path' =\u003e '',\n\n    /*\n     * The sitemap generator uses a CrawlProfile implementation to determine\n     * which urls should be crawled for the sitemap.\n     */\n    'crawl_profile' =\u003e Profile::class,\n    \n];\n```\n\n## Usage\n\n### Generating a sitemap\n\nThe easiest way is to crawl the given domain and generate a sitemap with all found links.\nThe destination of the sitemap should be specified by `$path`.\n\n```php\nSitemapGenerator::create('https://example.com')-\u003ewriteToFile($path);\n```\n\nThe generated sitemap will look similar to this:\n\n```xml\n\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\n\u003curlset xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\"\u003e\n    \u003curl\u003e\n        \u003cloc\u003ehttps://example.com\u003c/loc\u003e\n        \u003clastmod\u003e2016-01-01T00:00:00+00:00\u003c/lastmod\u003e\n    \u003c/url\u003e\n    \u003curl\u003e\n        \u003cloc\u003ehttps://example.com/page\u003c/loc\u003e\n        \u003clastmod\u003e2016-01-01T00:00:00+00:00\u003c/lastmod\u003e\n    \u003c/url\u003e\n\n    ...\n\u003c/urlset\u003e\n```\n\n### Customizing the sitemap generator\n\n#### Define a custom Crawl Profile\n\nYou can create a custom crawl profile by implementing the `Spatie\\Crawler\\CrawlProfiles\\CrawlProfile` interface and by customizing the `shouldCrawl()` method for full control over what url/domain/sub-domain should be crawled:\n\n```php\nuse Spatie\\Crawler\\CrawlProfiles\\CrawlProfile;\nuse Psr\\Http\\Message\\UriInterface;\n\nclass CustomCrawlProfile extends CrawlProfile\n{\n    public function shouldCrawl(UriInterface $url): bool\n    {\n        if ($url-\u003egetHost() !== 'localhost') {\n            return false;\n        }\n        \n        return $url-\u003egetPath() === '/';\n    }\n}\n```\n\nand register your `CustomCrawlProfile::class` in `config/sitemap.php`.\n\n```php\nreturn [\n    ...\n    /*\n     * The sitemap generator uses a CrawlProfile implementation to determine\n     * which urls should be crawled for the sitemap.\n     */\n    'crawl_profile' =\u003e CustomCrawlProfile::class,\n    \n];\n```\n\n\n#### Leaving out some links\n\nIf you don't want a crawled link to appear in the sitemap, just don't return it in the callable you pass to `hasCrawled `.\n\n```php\nuse Spatie\\Sitemap\\SitemapGenerator;\nuse Spatie\\Sitemap\\Tags\\Url;\n\nSitemapGenerator::create('https://example.com')\n    -\u003ehasCrawled(function (Url $url) {\n        if ($url-\u003esegment(1) === 'contact') {\n            return;\n        }\n\n        return $url;\n    })\n    -\u003ewriteToFile($sitemapPath);\n```\n\n#### Preventing the crawler from crawling some pages\nYou can also instruct the underlying crawler to not crawl some pages by passing a `callable` to `shouldCrawl`.\n\n**Note:** `shouldCrawl` will only work with the default crawl `Profile` or custom crawl profiles that implement a `shouldCrawlCallback` method. \n \n```php\nuse Spatie\\Sitemap\\SitemapGenerator;\nuse Psr\\Http\\Message\\UriInterface;\n\nSitemapGenerator::create('https://example.com')\n    -\u003eshouldCrawl(function (UriInterface $url) {\n        // All pages will be crawled, except the contact page.\n        // Links present on the contact page won't be added to the\n        // sitemap unless they are present on a crawlable page.\n       \n        return strpos($url-\u003egetPath(), '/contact') === false;\n    })\n    -\u003ewriteToFile($sitemapPath);\n```\n\n#### Configuring the crawler\n\nThe crawler itself can be [configured](https://github.com/spatie/crawler#usage) to do a few different things.\n\nYou can configure the crawler used by the sitemap generator, for example: to ignore robot checks; like so.\n\n```php\nSitemapGenerator::create('http://localhost:4020')\n    -\u003econfigureCrawler(function (Crawler $crawler) {\n        $crawler-\u003eignoreRobots();\n    })\n    -\u003ewriteToFile($file);\n```\n\n#### Limiting the amount of pages crawled\n\nYou can limit the amount of pages crawled by calling `setMaximumCrawlCount`\n\n```php\nuse Spatie\\Sitemap\\SitemapGenerator;\n\nSitemapGenerator::create('https://example.com')\n    -\u003esetMaximumCrawlCount(500) // only the 500 first pages will be crawled\n    ...\n```\n\n#### Executing Javascript\n\n   \nThe sitemap generator can execute JavaScript on each page so it will discover links that are generated by your JS scripts. You can enable this feature by setting `execute_javascript` in the config file to `true`.\n\nUnder the hood, [headless Chrome](https://github.com/spatie/browsershot) is used to execute JavaScript. Here are some pointers on [how to install it on your system](https://spatie.be/docs/browsershot/v4/requirements).\n\nThe package will make an educated guess as to where Chrome is installed on your system. You can also manually pass the location of the Chrome binary to  `executeJavaScript()`.\n\n#### Manually adding links\n\nYou can manually add links to a sitemap:\n\n```php\nuse Spatie\\Sitemap\\SitemapGenerator;\nuse Spatie\\Sitemap\\Tags\\Url;\n\nSitemapGenerator::create('https://example.com')\n    -\u003egetSitemap()\n    // here we add one extra link, but you can add as many as you'd like\n    -\u003ewriteToFile($sitemapPath);\n```\n\n#### Adding alternates to links\n\nMultilingual sites may have several alternate versions of the same page (one per language). Based on the previous example adding an alternate can be done as follows:\n\n```php\nuse Spatie\\Sitemap\\SitemapGenerator;\nuse Spatie\\Sitemap\\Tags\\Url;\n\nSitemapGenerator::create('https://example.com')\n    -\u003egetSitemap()\n    // here we add one extra link, but you can add as many as you'd like\n    -\u003ewriteToFile($sitemapPath);\n```\n\nNote the ```addAlternate``` function which takes an alternate URL and the locale it belongs to.\n\n#### Adding images to links\n\nUrls can also have images. See also https://developers.google.com/search/docs/advanced/sitemaps/image-sitemaps\n\n```php\nuse Spatie\\Sitemap\\Sitemap;\nuse Spatie\\Sitemap\\Tags\\Url;\n\nSitemap::create()\n    // here we add an image to a URL\n    -\u003eadd(Url::create('https://example.com')-\u003eaddImage('https://example.com/images/home.jpg', 'Home page image'))\n    -\u003ewriteToFile($sitemapPath);\n```\n\n#### Adding videos to links\n\nAs well as images, videos can be wrapped by URL tags. See https://developers.google.com/search/docs/crawling-indexing/sitemaps/video-sitemaps\n\nYou can set required attributes like so:\n\n```php\nuse Spatie\\Sitemap\\Sitemap;\nuse Spatie\\Sitemap\\Tags\\Url;\n\nSitemap::create()\n    -\u003eadd(\n        Url::create('https://example.com')\n            -\u003eaddVideo('https://example.com/images/thumbnail.jpg', 'Video title', 'Video Description', 'https://example.com/videos/source.mp4', 'https://example.com/video/123')\n    )\n    -\u003ewriteToFile($sitemapPath);\n```\n\nIf you want to pass the optional parameters like `family_friendly`, `live`, or `platform`:\n\n```php\nuse Spatie\\Sitemap\\Sitemap;\nuse Spatie\\Sitemap\\Tags\\Url;\nuse Spatie\\Sitemap\\Tags\\Video;\n\n\n$options = ['family_friendly' =\u003e Video::OPTION_YES, 'live' =\u003e Video::OPTION_NO];\n$allowOptions = ['platform' =\u003e Video::OPTION_PLATFORM_MOBILE];\n$denyOptions = ['restriction' =\u003e 'CA'];\n\nSitemap::create()\n    -\u003eadd(\n        Url::create('https://example.com')\n            -\u003eaddVideo('https://example.com/images/thumbnail.jpg', 'Video title', 'Video Description', 'https://example.com/videos/source.mp4', 'https://example.com/video/123', $options, $allowOptions, $denyOptions)\n    )\n    -\u003ewriteToFile($sitemapPath);\n```\n\n### Manually creating a sitemap\n\nYou can also create a sitemap fully manual:\n\n```php\nuse Carbon\\Carbon;\n\nSitemap::create()\n    -\u003eadd('/page1')\n    -\u003eadd('/page2')\n    -\u003eadd(Url::create('/page3')-\u003esetLastModificationDate(Carbon::create('2016', '1', '1')))\n    -\u003ewriteToFile($sitemapPath);\n```\n\n### Creating a sitemap index\nYou can create a sitemap index:\n```php\nuse Spatie\\Sitemap\\SitemapIndex;\n\nSitemapIndex::create()\n    -\u003eadd('/pages_sitemap.xml')\n    -\u003eadd('/posts_sitemap.xml')\n    -\u003ewriteToFile($sitemapIndexPath);\n```\n\nYou can pass a `Spatie\\Sitemap\\Tags\\Sitemap` object to manually set the `lastModificationDate` property.\n\n```php\nuse Spatie\\Sitemap\\SitemapIndex;\nuse Spatie\\Sitemap\\Tags\\Sitemap;\n\nSitemapIndex::create()\n    -\u003eadd('/pages_sitemap.xml')\n    -\u003eadd(Sitemap::create('/posts_sitemap.xml')\n        -\u003esetLastModificationDate(Carbon::yesterday()))\n    -\u003ewriteToFile($sitemapIndexPath);\n```\n\nthe generated sitemap index will look similar to this:\n\n```xml\n\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\n\u003csitemapindex xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\"\u003e\n    \u003csitemap\u003e\n        \u003cloc\u003ehttp://www.example.com/pages_sitemap.xml\u003c/loc\u003e\n        \u003clastmod\u003e2016-01-01T00:00:00+00:00\u003c/lastmod\u003e\n    \u003c/sitemap\u003e\n    \u003csitemap\u003e\n        \u003cloc\u003ehttp://www.example.com/posts_sitemap.xml\u003c/loc\u003e\n        \u003clastmod\u003e2015-12-31T00:00:00+00:00\u003c/lastmod\u003e\n    \u003c/sitemap\u003e\n\u003c/sitemapindex\u003e\n```\n\n### Create a sitemap index with sub-sequent sitemaps\n\nYou can call the `maxTagsPerSitemap` method to generate a\nsitemap that only contains the given amount of tags\n\n```php\nuse Spatie\\Sitemap\\SitemapGenerator;\n\nSitemapGenerator::create('https://example.com')\n    -\u003emaxTagsPerSitemap(20000)\n    -\u003ewriteToFile(public_path('sitemap.xml'));\n\n```\n\n## Generating the sitemap frequently\n\nYour site will probably be updated from time to time. In order to let your sitemap reflect these changes, you can run the generator periodically. The easiest way of doing this is to make use of Laravel's default scheduling capabilities.\n\nYou could set up an artisan command much like this one:\n\n```php\nnamespace App\\Console\\Commands;\n\nuse Illuminate\\Console\\Command;\nuse Spatie\\Sitemap\\SitemapGenerator;\n\nclass GenerateSitemap extends Command\n{\n    /**\n     * The console command name.\n     *\n     * @var string\n     */\n    protected $signature = 'sitemap:generate';\n\n    /**\n     * The console command description.\n     *\n     * @var string\n     */\n    protected $description = 'Generate the sitemap.';\n\n    /**\n     * Execute the console command.\n     *\n     * @return mixed\n     */\n    public function handle()\n    {\n        // modify this to your own needs\n        SitemapGenerator::create(config('app.url'))\n            -\u003ewriteToFile(public_path('sitemap.xml'));\n    }\n}\n```\n\nThat command should then be scheduled in the console kernel.\n\n```php\n// app/Console/Kernel.php\nprotected function schedule(Schedule $schedule)\n{\n    ...\n    $schedule-\u003ecommand('sitemap:generate')-\u003edaily();\n    ...\n}\n\n```\n\n## Changelog\n\nPlease see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.\n\n## Testing\n\nFirst start the test server in a separate terminal session:\n\n``` bash\ncd tests/server\n./start_server.sh\n```\n\nWith the server running you can execute the tests:\n\n``` bash\n$ composer test\n```\n\n## Contributing\n\nPlease see [CONTRIBUTING](https://github.com/spatie/.github/blob/main/CONTRIBUTING.md) for details.\n\n## Security\n\nIf you've found a bug regarding security please mail [security@spatie.be](mailto:security@spatie.be) instead of using the issue tracker.\n\n## Credits\n\n- [Freek Van der Herten](https://github.com/freekmurze)\n- [All Contributors](../../contributors)\n\n## Support us\n\nSpatie is a webdesign agency based in Antwerp, Belgium. You'll find an overview of all our open source projects [on our website](https://spatie.be/opensource).\n\nDoes your business depend on our contributions? Reach out and support us on [Patreon](https://www.patreon.com/spatie). \nAll pledges will be dedicated to allocating workforce on maintenance and new awesome stuff.\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspatie%2Flaravel-sitemap","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fspatie%2Flaravel-sitemap","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspatie%2Flaravel-sitemap/lists"}