Skip to content

Releases: Vinelab/RSS

v2.0.3

07 Mar 15:52
569a534
Compare
Choose a tag to compare

Added

v2.0.2

17 Jan 17:27
Compare
Choose a tag to compare

Added

  • Support installation on Laravel > 5.5 -> 8.0

v2.0.1

03 Aug 09:53
adac5fe
Compare
Choose a tag to compare

Fixed

v2.0.0

18 Jul 16:41
Compare
Choose a tag to compare

Added

  • Support for Atom feeds
  • Tests for newly introduced feeds: RSSFeed and AtomFeed
  • Ability to retrieve an article's original XML with Article::xml() thanks to @GertSallaerts #14

Changed

  • Feed has been split into RSSFeed and AtomFeed - self-factorising objects that will be returned when calling RSS::feed
  • Updated PHPUnit to v7 (last version supporting php 7.1)
  • Updated code for PHP 7.1

Fixed

v1.0.4

14 Oct 09:27
Compare
Choose a tag to compare

[70f4395] fix where RSS feed only has a single item (thanks to @petecoop

Framework Agnostic

01 Sep 16:06
Compare
Choose a tag to compare

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('...');