orezomi/yii2rss

Yii2 RSS Feeder and Reader

Installs: 26

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Type:yii2-extension

1.02 2016-05-10 05:06 UTC

This package is not auto-updated.

Last update: 2024-04-27 16:42:19 UTC


README

Yii2 RSS Feeder and Reader

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist orezomi/yii2rss "*"

or add

"orezomi/yii2rss": "*"

to the require section of your composer.json file.

Usage

Configuration web.php

'components' => [
       ...
    	'feed'=>[
    		'class'=>'orezomi\yii2rss\Feedoz',
    	],
    	...
    	]

and in controller or view use this to get feed:

$feed=Yii::$app->feed->reader()->import('http://example.com/rss');