davidjeddy/yii2-rss-reader

This package is abandoned and no longer maintained. No replacement package was suggested.

RSS reader widget for Yii2

Maintainers

Package info

github.com/davidjeddy/yii2-rss-reader

pkg:composer/davidjeddy/yii2-rss-reader

Statistics

Installs: 762

Dependents: 0

Suggesters: 0

Stars: 2

1.0.6 2017-02-06 04:31 UTC

This package is auto-updated.

Last update: 2026-04-19 00:26:30 UTC


README

[!WARNING] ⚠️ This project has been archived and is no longer maintained. ⚠️

Github has shown it does not respect its users. Other have said it better than I can.

Development has moved to Codeberg: ➡️ https://codeberg.org/DavidJEddy/yii2-rss-reader

Please update your remotes:

git remote set-url origin https://codeberg.org/DavidJEddy/yii2-rss-reader

Yii2 RSS Reader

RSS reader widget for Yii2.

Badges

SensioLabsInsight Latest Stable Version Latest Unstable Version License Total Downloads Monthly Downloads Daily Downloads

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist davidjeddy/yii2-rss-reader "*"

or add

"davidjeddy/yii2-rss-reader": "*"

to the require section of your composer.json file.

Usage

Once the widget is installed, add it to a view script:

echo \davidjeddy\RssFeed\RssReader::widget([
    'channel'   => '{source_url}/feed.xml',
    'itemView'  => 'item',
    'pageSize'  => 5,
    'wrapClass' => 'rss-wrap',
    'wrapTag'   => 'div',
]);