2017 © Pedro Peláez
 

library rss-l5

RSS builder for Laravel 5

image

mayconbordin/rss-l5

RSS builder for Laravel 5

  • Wednesday, July 8, 2015
  • by mayconbordin
  • Repository
  • 1 Watchers
  • 3 Stars
  • 3,290 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 21 Forks
  • 0 Open issues
  • 5 Versions
  • 5 % Grown

The README.md

RSS

RSS builder for Laravel 5, (*1)

Installation

Add mayconbordin/rss-l5 to composer.json., (*2)

"mayconbordin/rss-l5": "~1.1"

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

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

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

Now add the alias., (*5)

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

Usage

Returns the feed, (*6)

Route::get('/', function()
{
    $feed = Rss::feed('2.0', 'UTF-8');
    $feed->channel([
        'title'       => "Channel's title",
        'description' => "Channel's description",
        'link'        => "http://www.test.com/"
    ]);

    for ($i=1; $i<=5; $i++) {
        $feed->item([
            'title' => 'Item '.$i,
            'description|cdata' => 'Description '.$i,
            'link' => 'http://www.test.com/article-'.$i
        ]);
    }

    return response($feed, 200)->header('Content-Type', 'text/xml');
});

Save the feed, (*7)

Route::get('/', function()
{
    $feed = Rss::feed('2.0', 'UTF-8');
    $feed->channel([
        'title'       => "Channel's title",
        'description' => "Channel's description",
        'link'        => "http://www.test.com/"
    ]);

    for ($i=1; $i<=5; $i++) {
        $feed->item([
            'title' => 'Item '.$i,
            'description|cdata' => 'Description '.$i,
            'link' => 'http://www.test.com/article-'.$i
        ]);
    }

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

The Versions

08/07 2015

dev-master

9999999-dev

RSS builder for Laravel 5

  Sources   Download

MIT

The Requires

 

by Maycon Viana Bordin
by Avatar thujohn

laravel rss laravel5

08/07 2015

1.1

1.1.0.0

RSS builder for Laravel 5

  Sources   Download

MIT

The Requires

 

by Maycon Viana Bordin
by Avatar thujohn

laravel rss laravel5

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