robertlemke/rss
composer require robertlemke/rss
A multi-purpose RSS library
Readme excerpt
RSS / Atom Feed GeneratorThis is yet another RSS / Atom feed generator for PHP 7 and later. It works great in combination with Flow but should also be fine as a standalone library.
This package is composer enabled.
Example <?php $feed = new \RobertLemke\Rss\Feed(); $channel = new \RobertLemke\Rss\Channel(); $channel ->setTitle('All about Neos Flow') ->setDescription($channelDescription) ->setFeedUri($feedUri) ->setWebsiteUri($websiteUri) ->setLanguage('en-US'); $item = new \RobertLemke\Rss\Item(); $item ->setTitle('My first blog post') ->setGuid($someUniqueIdentifier) ->setPublicationDate(new DateTime()) ->…Read more
The same vendor provides 3 package(s).