PHPackages                             lucacri/laravelsimplesitemap - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. lucacri/laravelsimplesitemap

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

lucacri/laravelsimplesitemap
============================

A Laravel package to create simple sitemaps

3.0.0(2y ago)01.7k↓50%MITPHPPHP &gt;=8.0

Since Oct 13Pushed 2y ago1 watchersCompare

[ Source](https://github.com/lucacri/LaravelSimpleSitemap)[ Packagist](https://packagist.org/packages/lucacri/laravelsimplesitemap)[ Docs](https://github.com/lucacri/laravelsimplesitemap)[ RSS](/packages/lucacri-laravelsimplesitemap/feed)WikiDiscussions main Synced yesterday

READMEChangelog (4)Dependencies (8)Versions (5)Used By (0)

A Laravel package to create simple sitemaps
===========================================

[](#a-laravel-package-to-create-simple-sitemaps)

[![Latest Version on Packagist](https://camo.githubusercontent.com/b843ab3a206fc134dc27be1d7ca2cd76f6db2c1f70dd671af6acf6899534d102/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6c7563616372692f6c61726176656c73696d706c65736974656d61702e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/lucacri/laravelsimplesitemap)[![GitHub Tests Action Status](https://camo.githubusercontent.com/a8d15fd9ce257f74de07c683dd0c6d796eb2f407fdd64185306d9be9b8b2e1b7/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f6c7563616372692f6c61726176656c73696d706c65736974656d61702f72756e2d74657374733f6c6162656c3d7465737473)](https://github.com/lucacri/laravelsimplesitemap/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/3ca3ca9c60d1fcfef4e61fc4e6a4b0b7c6b82300bffcfcb9d729f511eabfd516/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f6c7563616372692f6c61726176656c73696d706c65736974656d61702f466978253230504850253230636f64652532307374796c652532306973737565733f6c6162656c3d636f64652532307374796c65)](https://github.com/lucacri/laravelsimplesitemap/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/173f79291af3909f6b3d7de5f7d8f68513c6c8c82cd4b5e2f8fc545bfea532c9/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6c7563616372692f6c61726176656c73696d706c65736974656d61702e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/lucacri/laravelsimplesitemap)

A very simple package to create sitemaps from specific URLs

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require lucacri/laravelsimplesitemap
```

You can publish and run the migrations with:

```
php artisan vendor:publish --tag="laravelsimplesitemap-migrations"
php artisan migrate
```

You can publish the config file with:

```
php artisan vendor:publish --tag="laravelsimplesitemap-config"
```

This is the contents of the published config file:

```
return [
    /*
     * Storage disk and path where to save the sitemap
     *
     */
    'save' => [
        'disk' => 'public',
        'path' => 'sitemap.xml'
    ],
    /*
     * The URL where your sitemap will be accessible.
     * This value will be used to inform Google of the changed sitemap
     *
     */
    'sitemap_url' => 'http://example.com/sitemap.xml',

    /*
    * An array of URLs to include in the sitemap
    * Example:
    *  [
            'loc'        => 'https://example.com',
            'changefreq' => 'weekly',
            'priority'   => 0.9
        ]
    */
    'urls' => [

        // example

        [
            'loc'        => 'https://example.com',
            'changefreq' => 'weekly',
            'priority'   => 0.9
        ]

    ]
];
```

Optionally, you can publish the views using

```
php artisan vendor:publish --tag="laravelsimplesitemap-views"
```

Usage
-----

[](#usage)

```
php artisan simplesitemap:create --ping-google
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Credits
-------

[](#credits)

- [Luca Critelli](https://github.com/lucacri)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

28

—

LowBetter than 52% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity18

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~186 days

Total

4

Last Release

801d ago

Major Versions

1.0.0 → 2.0.02023-03-28

2.0.1 → 3.0.02024-04-24

PHP version history (2 changes)1.0.0PHP ^8.0

3.0.0PHP &gt;=8.0

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/2913531?v=4)[Luca Critelli](/maintainers/Lucacri)[@lucacri](https://github.com/lucacri)

---

Top Contributors

[![lucacri](https://avatars.githubusercontent.com/u/2913531?v=4)](https://github.com/lucacri "lucacri (2 commits)")

---

Tags

laravellucacrilaravelsimplesitemap

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/lucacri-laravelsimplesitemap/health.svg)

```
[![Health](https://phpackages.com/badges/lucacri-laravelsimplesitemap/health.svg)](https://phpackages.com/packages/lucacri-laravelsimplesitemap)
```

###  Alternatives

[spatie/laravel-pdf

Create PDFs in Laravel apps

1.0k4.8M47](/packages/spatie-laravel-pdf)[codewithdennis/filament-select-tree

The multi-level select field enables you to make single selections from a predefined list of options that are organized into multiple levels or depths.

329530.5k29](/packages/codewithdennis-filament-select-tree)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)[worksome/exchange

Check Exchange Rates for any currency in Laravel.

124603.0k](/packages/worksome-exchange)[tarfin-labs/event-machine

Event-driven state machines for Laravel with event sourcing, type-safe context, and full audit trail.

199.4k](/packages/tarfin-labs-event-machine)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
