PHPackages                             arandilopez/laravel-feed-parser - 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. arandilopez/laravel-feed-parser

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

arandilopez/laravel-feed-parser
===============================

Laravel and Lumen rss feed parser

v0.1.3(9y ago)1235.6k3[2 issues](https://github.com/arandilopez/laravel-feed-parser/issues)MITPHPPHP &gt;=5.5.9

Since Jun 8Pushed 9y ago2 watchersCompare

[ Source](https://github.com/arandilopez/laravel-feed-parser)[ Packagist](https://packagist.org/packages/arandilopez/laravel-feed-parser)[ RSS](/packages/arandilopez-laravel-feed-parser/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (3)Dependencies (5)Versions (5)Used By (0)

Laravel and Lumen Feed parser
=============================

[](#laravel-and-lumen-feed-parser)

[![](https://camo.githubusercontent.com/fc9997b93493033596fcc3129945a2b5415d8fd9665bf9416c0d93e0e9ae0eab/68747470733a2f2f7472617669732d63692e6f72672f6172616e64696c6f70657a2f6c61726176656c2d666565642d7061727365722e7376673f6272616e63683d6d6173746572)](https://camo.githubusercontent.com/fc9997b93493033596fcc3129945a2b5415d8fd9665bf9416c0d93e0e9ae0eab/68747470733a2f2f7472617669732d63692e6f72672f6172616e64696c6f70657a2f6c61726176656c2d666565642d7061727365722e7376673f6272616e63683d6d6173746572) [![Latest Stable Version](https://camo.githubusercontent.com/2dac54d531193745b9a0fcb601e44c5c7faeef6683016cf04a64846aeb9600b3/68747470733a2f2f706f7365722e707567782e6f72672f6172616e64696c6f70657a2f6c61726176656c2d666565642d7061727365722f762f737461626c65)](https://packagist.org/packages/arandilopez/laravel-feed-parser) [![Total Downloads](https://camo.githubusercontent.com/386905b8600d3cff05fe103beed5bb2bfb9e361de1e649f17bf891caf20500a0/68747470733a2f2f706f7365722e707567782e6f72672f6172616e64696c6f70657a2f6c61726176656c2d666565642d7061727365722f646f776e6c6f616473)](https://packagist.org/packages/arandilopez/laravel-feed-parser) [![Latest Unstable Version](https://camo.githubusercontent.com/943d8a82a767711e8b33c49bbd505e6cf3a680d2fb492e4a54b8fadb452b1914/68747470733a2f2f706f7365722e707567782e6f72672f6172616e64696c6f70657a2f6c61726176656c2d666565642d7061727365722f762f756e737461626c65)](https://packagist.org/packages/arandilopez/laravel-feed-parser) [![License](https://camo.githubusercontent.com/34820536260193906fa917dc2cc88a07c7fd688122cc12d5fc89bbd12264d475/68747470733a2f2f706f7365722e707567782e6f72672f6172616e64696c6f70657a2f6c61726176656c2d666565642d7061727365722f6c6963656e7365)](https://packagist.org/packages/arandilopez/laravel-feed-parser)

A [Laravel](http://laravel.com) and [Lumen](http://lumen.laravel.com) package for parse RSS Feeds using SimplePie.

Instalation
-----------

[](#instalation)

You can install this package with [composer](http://getcomposer.org) by typing in your console: `composer require 'arandilopez/laravel-feed-parser:dev-master'` or adding this at your project's `composer.json`.

```
"require": {
  "arandilopez/laravel-feed-parser": "0.1.*"
}
```

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

[](#configuration)

### Laravel 5.1 (Pending Test)

[](#laravel-51-pending-test)

Register the `FeedServiceProvider` in your `providers` array in `config/app.php` in [Laravel 5.1](http://laravel.com)

```
'providers' => [
  // ...

  ArandiLopez\Feed\Providers\FeedServiceProvider::class,
],
```

### Lumen 5.1

[](#lumen-51)

Register the `LumenFeedServiceProvider` in your `bootstrap/app.php` in [Lumen 5.1](http://lumen.laravel.com)

```
// $app->register(App\Providers\AppServiceProvider::class);
$app->register(ArandiLopez\Feed\Providers\LumenFeedServiceProvider::class);
```

In order to use the Facade `Feed` you have to uncomment this line:

```
$app->withFacades();
```

### Environment Configuration

[](#environment-configuration)

Laravel and Lumen use `.env` files for their configuration. To change defaults configuration of Feed Parser add this environment variables in your `.env` file:

- FEED\_CACHE\_LIFE (Set cache lifetime. Expects an integer. Defaults 3600).
- FEED\_CACHE\_ENABLED (Enable cache. Expects a boolean. Defaults true).

> Cache location is set default to storage laravel path

Usage
-----

[](#usage)

### Quick Lumen example

[](#quick-lumen-example)

```
$app->get('/feed', function() {
  $myFeed = Feed::make('http://arandilopez.me/feed.xml');

  return response()->json($myFeed);
});
```

You can get the whole SimplePie instance by doing:

```
$myFeed = Feed::make('http://arandilopez.me/feed.xml');
$simplePieInstance = $myFeed->getRawFeederObject();

// do configs and whatever with the instance
```

> Check SimplePie's configuration and Docs at [simplepie.org/wiki/](http://simplepie.org/wiki/)

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

[](#contributing)

Yes, please.

Any feedback, errors or features suggestions [are welcome in the issues](https://github.com/arandilopez/laravel-feed-parser/issues/new)

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance17

Infrequent updates — may be unmaintained

Popularity33

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity51

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

Every ~154 days

Total

4

Last Release

3533d ago

PHP version history (2 changes)v0.1.0PHP &gt;=5.4.0

v0.1.1PHP &gt;=5.5.9

### Community

Maintainers

![](https://www.gravatar.com/avatar/0202bd3e51a8179306ba23f8227a13c8486b0e05f318e750fbb1d5a45d9e44ad?d=identicon)[arandilopez](/maintainers/arandilopez)

---

Top Contributors

[![arandilopez](https://avatars.githubusercontent.com/u/2985233?v=4)](https://github.com/arandilopez "arandilopez (35 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/arandilopez-laravel-feed-parser/health.svg)

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

###  Alternatives

[illuminate/pipeline

The Illuminate Pipeline package.

9346.6M213](/packages/illuminate-pipeline)[illuminate/pagination

The Illuminate Pagination package.

10532.5M862](/packages/illuminate-pagination)[spatie/laravel-livewire-wizard

Build wizards using Livewire

4061.0M4](/packages/spatie-laravel-livewire-wizard)[illuminate/broadcasting

The Illuminate Broadcasting package.

7126.5M178](/packages/illuminate-broadcasting)[illuminate/redis

The Illuminate Redis package.

8314.0M314](/packages/illuminate-redis)[bensampo/laravel-embed

Painless responsive embeds for videos, slideshows and more.

142146.8k](/packages/bensampo-laravel-embed)

PHPackages © 2026

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