pbh / laravel-sitemap
A not so simple sitemap generator for Laravel.
Installs: 4 786
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 275
pkg:composer/pbh/laravel-sitemap
Requires
- php: >=7.1.3
- illuminate/support: 5.6.*
Requires (Dev)
- orchestra/testbench: 3.6.x-dev
- phpunit/phpunit: ~7.0
README
A not so simple sitemap generator for Laravel.
Notes
- This repo is moved to GitLab.
- This repo is renamed to laravelium/sitemap
Installation
Run the following command and provide the latest stable version (e.g v3.0.1) :
composer require pbh/laravel-sitemap
or add the following to your composer.json file :
For Laravel 5.7
"pbh/laravel-sitemap": "3.0.*"
For Laravel 5.6
"pbh/laravel-sitemap": "2.8.*"
For Laravel 5.5
"pbh/laravel-sitemap": "2.7.*"
For Laravel 4
"pbh/laravel-sitemap": "2.4.*"
Publish needed assets (styles, views, config files) :
php artisan vendor:publish --provider="Laravelium\Sitemap\SitemapServiceProvider"
Note: Composer won't update them after composer update, you'll need to do it manually!