pomirleanu / laravel-sitemap by pomirleanu
forked from LaraPalCom/laravel-sitemap

A simple sitemap generator for Laravel.
150
0
2
Package Data
Maintainer Username: pomirleanu
Maintainer Contact: pomirleanu.florentin@gmail.com (Pomirleanu Florentin-Cristinel)
Package Create Date: 2016-06-11
Package Last Update: 2016-09-12
Home Page: https://roumen.it/projects/laravel-sitemap
Language: PHP
License: MIT
Last Refreshed: 2024-04-12 03:03:24
Package Statistics
Total Downloads: 150
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

laravel-sitemap package

Latest Stable Version Total Downloads License

A not so simple sitemap generator for Laravel 5.

Notes

Branch dev-master is for development and is UNSTABLE!

Installation

Run the following command and provide the latest stable version (e.g v2.6.4) :

composer require pomirleanu/sitemap

or add the following to your composer.json file :

"pomirleanu/sitemap": "2.6.*"

Then register this service provider with Laravel :

'Pomirleanu\Sitemap\SitemapServiceProvider',

Laravel 5.3 :

Service provider should be :

Pomirleanu\Sitemap\SitemapServiceProvider::class,

Publish needed assets (styles, views, config files) :

php artisan vendor:publish --provider="Pomirleanu\Sitemap\SitemapServiceProvider"

Note: Composer won't update them after composer update, you'll need to do it manually!