PHPackages                             entidi/feedreader - 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. [API Development](/categories/api)
4. /
5. entidi/feedreader

ActiveSilverstripe-vendormodule[API Development](/categories/api)

entidi/feedreader
=================

A new page type that can access the data of an external feed

2.0.0(8y ago)31313[1 issues](https://github.com/ntd/silverstripe-feedreader/issues)[1 PRs](https://github.com/ntd/silverstripe-feedreader/pulls)BSD-2-ClausePHP

Since Jan 6Pushed 2y ago2 watchersCompare

[ Source](https://github.com/ntd/silverstripe-feedreader)[ Packagist](https://packagist.org/packages/entidi/feedreader)[ Docs](http://silverstripe.entidi.com/)[ RSS](/packages/entidi-feedreader/feed)WikiDiscussions master Synced 2d ago

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

silverstripe-feedreader
=======================

[](#silverstripe-feedreader)

[![License](https://camo.githubusercontent.com/af314472778483f288a2be7e061d9c159154fc5b84d8646456d429015c23ab01/68747470733a2f2f706f7365722e707567782e6f72672f656e746964692f666565647265616465722f6c6963656e7365)](https://packagist.org/packages/entidi/feedreader)[![Build Status](https://camo.githubusercontent.com/d7160083f3f023a97a0bfaaaa1e0fde3d1aeb0d9d4cefc302e0ee51413ebc2c4/68747470733a2f2f7472617669732d63692e6f72672f6e74642f73696c7665727374726970652d666565647265616465722e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/ntd/silverstripe-feedreader)[![Code Quality](https://camo.githubusercontent.com/a3c2699959d172f1e831b6cb2fc59c6e46040fa751ca7608bf25e386c217354e/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6e74642f73696c7665727374726970652d666565647265616465722f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/ntd/silverstripe-feedreader/?branch=master)[![Latest Stable Version](https://camo.githubusercontent.com/f97442d5f9d44e096bbb4e3f7b9a247b84c10a224a210ba6486f6a7ef93088b7/68747470733a2f2f706f7365722e707567782e6f72672f656e746964692f666565647265616465722f762f737461626c65)](https://packagist.org/packages/entidi/feedreader)

The [silverstripe-feedreader](http://silverstripe.entidi.com/) module implements a new page type (*FeedReaderPage*) that can access the data contained in an external RSS 2.0 or ATOM 1.0 feed. The feed format is automatically deduced from its content, that is if the `//channel/item`[XPath](http://www.w3.org/TR/xpath/) expression resolves to a non-emtpy list it is considered an RSS2 feed, otherwise it is considered ATOM1, and the `//feed/entry` expression will be used instead.

The main developement is done in `dev`: that is merged into `master` when stable enough. When this happens, an appropriate `2.*` release is tagged. `dev` and `master` branches, together with any `2.*` release, are compatibles with SilverStripe 4. For SilverStripe 3 you should take a look at the `ss3`branch and `1.*` releases.

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

[](#installation)

With composer:

```
composer require entidi/feedreader

```

Without composer, download [the tarball](https://github.com/ntd/silverstripe-feedreader/releases)and unpack it under the base directory. This method is not really tested, so it can be possible you will need to tweak something.

Usage
-----

[](#usage)

The default template (`templates/eNTiDi/FeedReader/Layout/FeedReaderPage.ss`) is compatible with [silverstrap](http://dev.entidi.com/p/silverstrap/) ^4.0 but it can be easily overriden by redefining the `FeedReaderPage.ss` file in your own theme with higher priority.

To provide access to the latest news, you can define a function similar to the following:

```
public function LatestNews()
{
    $news = DataObject::get_one('eNTiDi\FeedReader\FeedReaderPage');
    return $news ? $news->Items(1)->first() : null;
}

```

Then you can enhance your feed page with a template snippet, e.g.:

```

Latest news

    $Date.Date: $Summary.XML
    More ...

```

Support
-------

[](#support)

This project has been developed by [ntd](mailto:ntd@entidi.it). Its [home page](http://silverstripe.entidi.com/) is shared by other [SilverStripe](http://www.silverstripe.org/) modules and themes.

To check out the code, report issues or propose enhancements, go to the [dedicated tracker](http://dev.entidi.com/p/silverstripe-feedreader). Alternatively, you can do the same things by leveraging the official [github repository](https://github.com/ntd/silverstripe-feedreader).

###  Health Score

29

—

LowBetter than 59% of packages

Maintenance13

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity67

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 ~482 days

Total

4

Last Release

3064d ago

Major Versions

1.0.2 → 2.0.02017-12-23

### Community

Maintainers

![](https://www.gravatar.com/avatar/664f545546593aba0414ee3f558665eacbf4f57681276d194e79e084dbcf5fbb?d=identicon)[ntd](/maintainers/ntd)

---

Top Contributors

[![ntd](https://avatars.githubusercontent.com/u/160618?v=4)](https://github.com/ntd "ntd (46 commits)")

---

Tags

atomcomposerfeed-readermodulersssilverstripesilverstripe-4silverstripe-modulepageatomfeedrsssilverstripefeedreader

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/entidi-feedreader/health.svg)

```
[![Health](https://phpackages.com/badges/entidi-feedreader/health.svg)](https://phpackages.com/packages/entidi-feedreader)
```

###  Alternatives

[laminas/laminas-feed

provides functionality for creating and consuming RSS and Atom feeds

16749.2M47](/packages/laminas-laminas-feed)[facebook/php-business-sdk

PHP SDK for Facebook Business

90121.9M34](/packages/facebook-php-business-sdk)[facebook/php-ads-sdk

PHP SDK for Facebook Business

9014.1M8](/packages/facebook-php-ads-sdk)[mibe/feedwriter

Generate feeds in either RSS 1.0, RSS 2.0 or ATOM formats

1951.1M5](/packages/mibe-feedwriter)[debril/rss-atom-bundle

RSS / Atom and JSONFeed support for Symfony

1381.3M2](/packages/debril-rss-atom-bundle)[eko/feedbundle

A Symfony bundle to build RSS feeds from entities

142574.6k3](/packages/eko-feedbundle)

PHPackages © 2026

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