Bard is the simplest PHP Sitemap package, just add some URLs and you are ready to go.
Abandoned! I suggest using spatie/larevel-sitemap
instead. It is a much better package with automatic sitemap generation.
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();
Run this from your project root in command line:
composer require laravelista/bard