This repository has been archived by the owner on Sep 17, 2018. It is now read-only.
Releases: laravelista/Bard
Releases · laravelista/Bard
Had to revert carbon dependency change
Updated dependencies to the latest
2.2.0 Updated dependencies.
Update for Laravel 5.6
2.1.0 Update license.md
Major revamp
This version breaks everything.
New syntax:
$sitemap->addUrl('http://domain.com/contact')
->setPriority(0.8)
->setChangeFrequency('hourly')
->setLastModification(Carbon::now())
->addTranslation('hr', 'http://domain.com/hr/contact');
- Dropped Laravel integration boilerplate
- Simplified everything
- Updated documentation coming soon
Added support for http-foundation 3.0
1.0.1 Update composer.json
First Stable Release
This is the first stable release of Bard.
I am very happy with this now.
Features:
- Framework Agnostic Sitemap Package
- Laravel Friendly also other Frameworks friendly :)
- Common Sitemap Boilerplate for Laravel and other Frameworks
- Create Sitemaps
- Create Sitemap Index
- Return XML response
- Get XML string
- Input Validation
Everything is tested like crazy with PhpSpec
Changes:
- Added boilerplate (abstract class & interface) for Laravel, but it can be used with other frameworks too.
Major changes to the API
- Added Sitemap Index support
- Class
Sitemap
has been renamed toUrlSet
because of sitemap indexing support