PHPackages                             chipslays/rss-feedly - 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. chipslays/rss-feedly

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

chipslays/rss-feedly
====================

Simple RSS feed reader.

2.0.1(4y ago)113MITPHP

Since Sep 19Pushed 4y ago1 watchersCompare

[ Source](https://github.com/chipslays/rss-feedly)[ Packagist](https://packagist.org/packages/chipslays/rss-feedly)[ RSS](/packages/chipslays-rss-feedly/feed)WikiDiscussions 2.x Synced 1mo ago

READMEChangelog (5)Dependencies (1)Versions (7)Used By (0)

📢 Feedly
========

[](#-feedly)

Simple RSS feed reader for PHP.

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

[](#installation)

```
composer require chipslays/rss-feedly
```

Usage
-----

[](#usage)

Simple example:

```
use Feedly\Feedly;

require __DIR__ . '/vendor/autoload.php';

$feed = (new Feedly)->get('https://www.rt.com/rss/news/');

foreach ($feed->posts as $post) {
    echo $post['title'] . PHP_EOL;
}
```

And much advanced example:

```
use Feedly\Feedly;

require __DIR__ . '/vendor/autoload.php';

$posts = $rss
    ->get('https://www.rt.com/rss/news/')
    ->except(['Trump'], ['title'])
    ->except(['Politics'], ['category'])
    ->priority([
        [100, ['Google', 'Tesla', 'Durov'], ['title', 'description']],
        [Feedly::DEFAULT_PRIORITY + 1, ['Apple'], ['description']],
    ]);

// get posts in the last 6 hours
$posts = $posts->where('date', '>', strtotime('-6 hours'));

// can use foreach or `each` method
$posts->each(function ($post) {
    echo $post['title'] . PHP_EOL;
});

foreach ($posts as $post) {
    // ...
}
```

Examples
--------

[](#examples)

More exampels can be found [`here`](examples).

License
-------

[](#license)

MIT.

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

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

Every ~20 days

Total

6

Last Release

1599d ago

Major Versions

1.0.2 → 2.0.02021-12-24

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/19103498?v=4)[chipslays](/maintainers/chipslays)[@chipslays](https://github.com/chipslays)

---

Top Contributors

[![chipslays](https://avatars.githubusercontent.com/u/19103498?v=4)](https://github.com/chipslays "chipslays (21 commits)")

---

Tags

feedlibraryphprssrss-feedrss-parserrss-readerfeedrssreader

### Embed Badge

![Health badge](/badges/chipslays-rss-feedly/health.svg)

```
[![Health](https://phpackages.com/badges/chipslays-rss-feedly/health.svg)](https://phpackages.com/packages/chipslays-rss-feedly)
```

###  Alternatives

[suin/php-rss-writer

Yet another simple RSS writer library for PHP 5.4 or later.

2651.4M20](/packages/suin-php-rss-writer)[rumenx/php-feed

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

3652.3k](/packages/rumenx-php-feed)[fkr/simplepie-bundle

Integrates SimplePie into Symfony

11137.5k](/packages/fkr-simplepie-bundle)[pdir/social-feed-bundle

Social feed extension for Contao CMS

1414.8k](/packages/pdir-social-feed-bundle)

PHPackages © 2026

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