Releases: Vinelab/RSS
Releases · Vinelab/RSS
v2.0.3
v2.0.2
v2.0.1
v2.0.0
Added
- Support for Atom feeds
- Tests for newly introduced feeds:
RSSFeed
andAtomFeed
- Ability to retrieve an article's original XML with
Article::xml()
thanks to @GertSallaerts #14
Changed
Feed
has been split intoRSSFeed
andAtomFeed
- self-factorising objects that will be returned when callingRSS::feed
- Updated PHPUnit to v7 (last version supporting php 7.1)
- Updated code for PHP 7.1
Fixed
- Accessing
enclosure
attribute inArticle
@GertSallaerts #14
v1.0.4
Framework Agnostic
This package is framework agnostic now, you can simply use it as follows:
require 'vendor/autoload.php';
use Vinelab\Rss\Rss;
$rss = new Rss();
$rss->feed('...');