Skip to content
This repository has been archived by the owner on Sep 17, 2018. It is now read-only.
/ Bard Public archive

Developer friendly Bard that writes sitemap poetry in xml.

License

Notifications You must be signed in to change notification settings

laravelista/Bard

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bard

Bard is the simplest PHP Sitemap package, just add some URLs and you are ready to go.

Become a Patron

Abandoned! I suggest using spatie/larevel-sitemap instead. It is a much better package with automatic sitemap generation.

Syntax

use Laravelista\Bard\UrlSet;
use Sabre\Xml\Writer;
use Carbon\Carbon;

$sitemap = new UrlSet(new Writer);

$sitemap->addUrl('http://domain.com/contact')
    ->setPriority(0.8)
    ->setChangeFrequency('hourly')
    ->setLastModification(Carbon::now())
    ->addTranslation('hr', 'http://domain.com/hr/contact');

$sitemap->render()->send();

Start learning

Installation

Run this from your project root in command line:

composer require laravelista/bard

Documentation

Tutorials

Bard