2017 © Pedro Peláez
 

neos-package rss

A multi-purpose RSS library

image

robertlemke/rss

A multi-purpose RSS library

  • Monday, January 23, 2017
  • by robertlemke
  • Repository
  • 0 Watchers
  • 5 Stars
  • 3,708 Installations
  • PHP
  • 2 Dependents
  • 0 Suggesters
  • 6 Forks
  • 2 Open issues
  • 6 Versions
  • 6 % Grown

The README.md

RSS / Atom Feed Generator

This 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., (*1)

This package is composer enabled., (*2)

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())
  ->setContent($blogPostContent);

$channel->addItem($item);
$feed->addChannel($channel);

echo $feed->render();

The Versions

23/01 2017

dev-master

9999999-dev

A multi-purpose RSS library

  Sources   Download

MIT

The Requires

  • php ~5.5 || ~7.0

 

23/01 2017

2.0.0

2.0.0.0

A multi-purpose RSS library

  Sources   Download

MIT

The Requires

  • php ~5.5 || ~7.0

 

23/01 2017

1.0.x-dev

1.0.9999999.9999999-dev

A multi-purpose RSS library

  Sources   Download

MIT

The Requires

  • php ~5.5 || ~7.0

 

23/01 2017

1.1.1

1.1.1.0

A multi-purpose RSS library

  Sources   Download

MIT

The Requires

  • php ~5.5 || ~7.0

 

07/03 2016

1.1.0

1.1.0.0

A multi-purpose RSS library

  Sources   Download

MIT

The Requires

  • php ~5.5 || ~7.0

 

20/08 2015

1.0.0

1.0.0.0

A multi-purpose RSS library

  Sources   Download

MIT