PHPackages                             ejdelmonico/laravel-rss-feed - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. ejdelmonico/laravel-rss-feed

ActivePackage[Utility &amp; Helpers](/categories/utility)

ejdelmonico/laravel-rss-feed
============================

A simple Laravel 5 wrapper around SimplePie to pull in RSS feeds

v1.0.4(9y ago)0129MITPHPPHP &gt;=7.0

Since Nov 2Pushed 8y ago1 watchersCompare

[ Source](https://github.com/ejdelmonico/LaravelRSSFeed)[ Packagist](https://packagist.org/packages/ejdelmonico/laravel-rss-feed)[ Docs](https://github.com/ejdelmonico/LaravelRSSFeed)[ RSS](/packages/ejdelmonico-laravel-rss-feed/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (5)Versions (7)Used By (0)

Laravel RSS Feed Parser
=======================

[](#laravel-rss-feed-parser)

[![Latest Version on Packagist](https://camo.githubusercontent.com/7b3b4c8302b5ff6ded78c5279613c08108a04a2183ca4817c2ad5ab154c65d18/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f656a64656c6d6f6e69636f2f6c61726176656c2d7273732d666565642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ejdelmonico/laravel-rss-feed)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/6695b53b0d86905eb73a0e0c3d5be0e535c65fe4023079b614e4a4a06e660860/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f656a64656c6d6f6e69636f2f4c61726176656c525353466565642f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/ejdelmonico/LaravelRSSFeed)[![Quality Score](https://camo.githubusercontent.com/a77c7888b82114affca9c3829a6f57eaf11bc238b84cb3e68355086c93eb76f8/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f656a64656c6d6f6e69636f2f4c61726176656c525353466565642e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/ejdelmonico/LaravelRSSFeed/?branch=master)[![StyleCI Status](https://camo.githubusercontent.com/25c4f26c8ace6d95c2f2d7da13719b4d53c0dcca174d510dfdc9fce46c63a786/68747470733a2f2f7374796c6563692e696f2f7265706f732f37323331363939322f736869656c643f7374796c653d666c6174)](https://styleci.io/repos/72316992?style=flat)[![Total Downloads](https://camo.githubusercontent.com/579d893516691a3a38326aaca6f4ce022d4f3a8128d8930e8baf04266fa0dc9d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f656a64656c6d6f6e69636f2f6c61726176656c2d7273732d666565642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ejdelmonico/laravel-rss-feed)

This project is crafted for usage in Laravel 5 applications using &gt;= PHP 7. It was inspired by a need to pull in blog posts from a single url to use in Laravel Blade templates.

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

[](#installation)

The LaravelRSSFeed package is installed by requiring the package in your `composer.json`. You can either do it via composer install

```
composer require ejdelmonico/laravel-rss-feed

```

or by simply including it.

```
{
  "require": {
    "ejdelmonico/laravel-rss-feed": "1.*"
  }
}

```

Configuration
-------------

[](#configuration)

To use the package, you must register the service provider:

```
// In config/app.php

'providers' => [
  // ...
  ejdelmonico\LaravelRSSFeed\LaravelRSSFeedServiceProvider::class,
],

'aliases' => [
  // ...
  'Feed' => ejdelmonico\LaravelRSSFeed\FeedFacade::class,
],

```

Usage
-----

[](#usage)

```
php artisan vendor:publish --provider="ejdelmonico\LaravelRSSFeed\LaravelRSSFeedServiceProvider" --tag=config

```

Here is a simple example:

```
Route::get('feed', function () {
    $url = 'https://blog.errordetective.com/rss/';
    $rss = Feed::makeRequest($url);
    $data = array(
        'title' => $rss->feed->get_title(),
        'permalink' => $rss->feed->get_permalink(),
        'items' => $rss->feed->get_items(),
    );
    return view('pages.feed', $data);
});

```

Change log
----------

[](#change-log)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) and [CONDUCT](CONDUCT.md) for details.

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [E J Del Monico](https://github.com/ejdelmonico)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

28

—

LowBetter than 52% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity62

Established project with proven stability

 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

Every ~4 days

Total

5

Last Release

3508d ago

PHP version history (2 changes)v1.0PHP ^7.0

v1.0.1PHP &gt;=7.0

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1831346?v=4)[Ed Del Monico](/maintainers/ejdelmonico)[@ejdelmonico](https://github.com/ejdelmonico)

---

Top Contributors

[![ejdelmonico](https://avatars.githubusercontent.com/u/1831346?v=4)](https://github.com/ejdelmonico "ejdelmonico (33 commits)")

---

Tags

laravelrssSimplePieejdelmonico

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/ejdelmonico-laravel-rss-feed/health.svg)

```
[![Health](https://phpackages.com/badges/ejdelmonico-laravel-rss-feed/health.svg)](https://phpackages.com/packages/ejdelmonico-laravel-rss-feed)
```

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3345.1M337](/packages/psalm-plugin-laravel)[laravel/ai

The official AI SDK for Laravel.

1.0k2.1M163](/packages/laravel-ai)[moonshine/moonshine

Laravel administration panel

1.3k239.9k76](/packages/moonshine-moonshine)[linkxtr/laravel-qrcode

A clean, modern, and easy-to-use QR code generator for Laravel

3614.9k](/packages/linkxtr-laravel-qrcode)[tomshaw/electricgrid

A feature-rich Livewire package designed for projects that require dynamic, interactive data tables.

119.2k](/packages/tomshaw-electricgrid)

PHPackages © 2026

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