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. lucacri/laravelsimplesitemap

ActiveLibrary

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

A Laravel package to create simple sitemaps

3.0.0(2y ago)01.5k↓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 1mo ago

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 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity19

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

748d 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://www.gravatar.com/avatar/88fb88f414a707c7e0641c08a653ef1b2764e2ba728d2a93907e51d68df54d83?d=identicon)[Lucacri](/maintainers/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

[vormkracht10/laravel-mails

Laravel Mails can collect everything you might want to track about the mails that has been sent by your Laravel app.

24149.7k](/packages/vormkracht10-laravel-mails)[spatie/laravel-prometheus

Export Laravel metrics to Prometheus

2651.3M6](/packages/spatie-laravel-prometheus)[hydrat/filament-table-layout-toggle

Filament plugin adding a toggle button to tables, allowing user to switch between Grid and Table layouts.

6292.3k1](/packages/hydrat-filament-table-layout-toggle)[scalar/laravel

Render your OpenAPI-based API reference

6183.9k2](/packages/scalar-laravel)[ralphjsmit/laravel-helpers

A package containing handy helpers for your Laravel-application.

13704.6k2](/packages/ralphjsmit-laravel-helpers)[musahmusah/laravel-multipayment-gateways

A Laravel Package that makes implementation of multiple payment Gateways endpoints and webhooks seamless

852.2k1](/packages/musahmusah-laravel-multipayment-gateways)

PHPackages © 2026

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