sofa-digital / laravel-sitemap

A not so simple sitemap generator for Laravel

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Latest Stable Version Total Downloads Build Status 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.8.1) :

composer require roumen/sitemap

or add the following to your composer.json file :

For Laravel 5.6

"roumen/sitemap": "2.8.*"

For Laravel 5.5

"roumen/sitemap": "2.7.*"

For Laravel 5.4 and lower

"roumen/sitemap": "2.6.*"

If you are using laravel 5.5 or higher you can skip the service provider registration!

for Laravel 5.4 and lower register this service provider with Laravel :

Roumen\Sitemap\SitemapServiceProvider::class,

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

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

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

Examples

and more in the Wiki.

About

A not so simple sitemap generator for Laravel

License:Other


Languages

Language:PHP 75.7%Language:XSLT 24.3%