emsf14/rss

Simple Pie wrapper

v3.0 2014-11-27 13:14 UTC

This package is not auto-updated.

Last update: 2024-04-23 01:55:52 UTC


README

Build Status Scrutinizer Code Quality Code Coverage

This is a Simple Pie wrapper that makes it easy to display RSS feeds. You can even merge multiple feeds into one. Installation

Using Composer and Packagist, it's easy to get started. Simply add the following to your composer.json file:

"require": {
    "emsf14/rss": "dev-master"
},

After using Compser to install the package, you can find it in your vendor directory, ready for use. In the webroot subfolder you'll find a simple working example. Important! The cache-folder needs to be writeable.

All you need to do to display a feed is to instantiate the CRSS class with an array of one or more RSS feed URls. Then call the metod "printFeed", it returns a string containing the feed.

$feed = new \Emsf14\library\CRSS([
	'http://feeds.bbci.co.uk/news/rss.xml'
]);

echo $feed->printFeed();