2017 © Pedro Peláez
 

library rss

RSS builder for Laravel 4

image

thujohn/rss

RSS builder for Laravel 4

  • Monday, December 22, 2014
  • by thujohn
  • Repository
  • 6 Watchers
  • 79 Stars
  • 66,664 Installations
  • PHP
  • 5 Dependents
  • 0 Suggesters
  • 21 Forks
  • 10 Open issues
  • 4 Versions
  • 4 % Grown

The README.md

RSS

RSS builder for Laravel 4, (*1)

Build Status, (*2)

Installation

Add thujohn/rss to composer.json., (*3)

"thujohn/rss": "~1.0"

Run composer update to pull down the latest version of RSS., (*4)

Now open up app/config/app.php and add the service provider to your providers array., (*5)

'providers' => array(
    'Thujohn\Rss\RssServiceProvider',
)

Now add the alias., (*6)

'aliases' => array(
    'Rss' => 'Thujohn\Rss\RssFacade',
)

Usage

Returns the feed, (*7)

Route::get('/', function()
{
    $feed = Rss::feed('2.0', 'UTF-8');
    $feed->channel(array('title' => 'Channel\'s title', 'description' => 'Channel\'s description', 'link' => 'http://www.test.com/'));
    for ($i=1; $i<=5; $i++){
        $feed->item(array('title' => 'Item '.$i, 'description|cdata' => 'Description '.$i, 'link' => 'http://www.test.com/article-'.$i));
    }

    return Response::make($feed, 200, array('Content-Type' => 'text/xml'));
});

Save the feed, (*8)

Route::get('/', function()
{
    $feed = Rss::feed('2.0', 'UTF-8');
    $feed->channel(array('title' => 'Channel\'s title', 'description' => 'Channel\'s description', 'link' => 'http://www.test.com/'));
    for ($i=1; $i<=5; $i++){
        $feed->item(array('title' => 'Item '.$i, 'description|cdata' => 'Description '.$i, 'link' => 'http://www.test.com/article-'.$i));
    }

    $feed->save('test.xml');
});

The Versions

22/12 2014

dev-master

9999999-dev

RSS builder for Laravel 4

  Sources   Download

MIT

The Requires

 

by Avatar thujohn

laravel rss laravel4

22/12 2014

1.0.3

1.0.3.0

RSS builder for Laravel 4

  Sources   Download

MIT

The Requires

 

by Avatar thujohn

laravel rss laravel4

22/12 2014

1.0.2

1.0.2.0

RSS builder for Laravel 4

  Sources   Download

MIT

The Requires

 

by Avatar thujohn

laravel rss laravel4

07/04 2014

1.0.0

1.0.0.0

RSS builder for Laravel 4

  Sources   Download

MIT

The Requires

 

by Avatar thujohn

laravel rss laravel4