2017 © Pedro Peláez
 

library fbia-rss

Facebook Instant Articles RSS Builder (with Laravel 4 Service Provider)

image

mcstutterfish/fbia-rss

Facebook Instant Articles RSS Builder (with Laravel 4 Service Provider)

  • Wednesday, July 27, 2016
  • by mcstutterfish
  • Repository
  • 1 Watchers
  • 2 Stars
  • 152 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 13 Versions
  • 1 % Grown

The README.md

FBIARss

Facebook Instant Articles RSS builder for Laravel 4, (*1)

Installation

Add mcstutterfish/fbia-rss to composer.json., (*2)

"mcstutterfish/fbia-rss": "0.1.x"

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

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

'providers' => array(
    'FBIARss\FBIARssServiceProvider',
)

Now add the alias., (*5)

'aliases' => array(
    'FBIARss' => 'FBIARss\FBIARssFacade',
)

Usage

Returns the feed, (*6)

Route::get('/', function()
{
    $feed = FBIARss::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, (*7)

Route::get('/', function()
{
    $feed = FBIARss::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

27/07 2016

dev-master

9999999-dev

Facebook Instant Articles RSS Builder (with Laravel 4 Service Provider)

  Sources   Download

MIT

The Requires

 

by Christopher M. Black

laravel rss facebook laravel4 instant articles

27/07 2016

0.1.11

0.1.11.0

Facebook Instant Articles RSS Builder (with Laravel 4 Service Provider)

  Sources   Download

MIT

The Requires

 

by Christopher M. Black

laravel rss facebook laravel4 instant articles

05/07 2016

0.1.10

0.1.10.0

Facebook Instant Articles RSS Builder (with Laravel 4 Service Provider)

  Sources   Download

MIT

The Requires

 

by Christopher M. Black

laravel rss facebook laravel4 instant articles

17/06 2016

0.1.9

0.1.9.0

Facebook Instant Articles RSS Builder (with Laravel 4 Service Provider)

  Sources   Download

MIT

The Requires

 

by Christopher M. Black

laravel rss facebook laravel4 instant articles

16/06 2016

0.1.8

0.1.8.0

Facebook Instant Articles RSS Builder (with Laravel 4 Service Provider)

  Sources   Download

MIT

The Requires

 

by Christopher M. Black

laravel rss facebook laravel4 instant articles

15/06 2016

0.1.7

0.1.7.0

Facebook Instant Articles RSS Builder (with Laravel 4 Service Provider)

  Sources   Download

MIT

The Requires

 

by Christopher M. Black

laravel rss facebook laravel4 instant articles

14/06 2016

0.1.6

0.1.6.0

Facebook Instant Articles RSS Builder (with Laravel 4 Service Provider)

  Sources   Download

MIT

The Requires

 

by Christopher M. Black

laravel rss facebook laravel4 instant articles

14/06 2016

0.1.5

0.1.5.0

Facebook Instant Articles RSS Builder (with Laravel 4 Service Provider)

  Sources   Download

MIT

The Requires

 

by Christopher M. Black

laravel rss facebook laravel4 instant articles

11/05 2016

0.1.4

0.1.4.0

Facebook Instant Articles RSS Builder (with Laravel 4 Service Provider)

  Sources   Download

MIT

The Requires

 

by Christopher M. Black

laravel rss facebook laravel4 instant articles

19/04 2016

0.1.3

0.1.3.0

Facebook Instant Articles RSS Builder (with Laravel 4 Service Provider)

  Sources   Download

MIT

The Requires

 

by Christopher M. Black

laravel rss facebook laravel4 instant articles

19/04 2016

0.1.2

0.1.2.0

Facebook Instant Articles RSS Builder (with Laravel 4 Service Provider)

  Sources   Download

MIT

The Requires

 

by Christopher M. Black

laravel rss facebook laravel4 instant articles

06/04 2016

0.1.1

0.1.1.0

Facebook Instant Articles RSS Builder (with Laravel 4 Service Provider)

  Sources   Download

MIT

The Requires

 

by Christopher M. Black

laravel rss facebook laravel4 instant articles

06/04 2016

dev-integration

dev-integration

Facebook Instant Articles RSS Builder (with Laravel 4 Service Provider)

  Sources   Download

MIT

The Requires

 

by Christopher M. Black

laravel rss facebook laravel4 instant articles