PHPackages                             kalimeromk/update-thujohn-rss - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. kalimeromk/update-thujohn-rss

ActiveLibrary

kalimeromk/update-thujohn-rss
=============================

RSS builder for Laravel

v1(3y ago)0761MITPHPPHP ^7.3|7.4|^8.0|^8.1

Since Oct 10Pushed 3y ago1 watchersCompare

[ Source](https://github.com/KalimeroMK/thujohn-rss-l6)[ Packagist](https://packagist.org/packages/kalimeromk/update-thujohn-rss)[ RSS](/packages/kalimeromk-update-thujohn-rss/feed)WikiDiscussions master Synced today

READMEChangelog (1)DependenciesVersions (2)Used By (0)

RSS
===

[](#rss)

RSS builder for Laravel 5

[![Build Status](https://camo.githubusercontent.com/7ecae24b2b1a298953e5e161bc47c794adcc0deb4c37f3c9c1ff13f63260eb52/68747470733a2f2f7472617669732d63692e6f72672f7468756a6f686e2f7273732d6c342e706e673f6272616e63683d6d6173746572)](https://travis-ci.org/thujohn/rss-l4)

Installation
------------

[](#installation)

Add `thujohn/rss` to `composer.json`.

```
"kalimeromk/update-thujohn-rss": "dev-master",

```

Run `composer update` to pull down the latest version of RSS.

Now open up `app/config/app.php` and add the service provider to your `providers` array.

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

```

Now add the alias.

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

```

Usage
-----

[](#usage)

Returns the feed

```
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; $iitem(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

```
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; $iitem(array('title' => 'Item '.$i, 'description|cdata' => 'Description '.$i, 'link' => 'http://www.test.com/article-'.$i));
	}

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

```

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

1307d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/472c4da0220f15747dd81d3a27ffbba022a06ab20f64a367ddcaacd790d812d7?d=identicon)[KalimeroMK](/maintainers/KalimeroMK)

---

Top Contributors

[![KalimeroMK](https://avatars.githubusercontent.com/u/24772657?v=4)](https://github.com/KalimeroMK "KalimeroMK (13 commits)")

---

Tags

laravelrss

### Embed Badge

![Health badge](/badges/kalimeromk-update-thujohn-rss/health.svg)

```
[![Health](https://phpackages.com/badges/kalimeromk-update-thujohn-rss/health.svg)](https://phpackages.com/packages/kalimeromk-update-thujohn-rss)
```

###  Alternatives

[binshops/laravel-blog

Simple blog package (with admin panel) for Laravel. Includes all views, controllers, routes and can add a blog to any existing Laravel app. Fully customisable blog (view, urls, and many other options). Includes image uploads and a pretty admin interface to manage your blog. Defaults to /blog but you can change it to anything.

48447.0k](/packages/binshops-laravel-blog)[thujohn/rss

RSS builder for Laravel 4

72130.0k3](/packages/thujohn-rss)[rumenx/php-feed

Framework-agnostic PHP Feed generator for Laravel, Symfony, and more.

3652.3k](/packages/rumenx-php-feed)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
