orezomi / yii2rss
Yii2 RSS Feeder and Reader
Installs: 26
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
This package is not auto-updated.
Last update: 2025-03-29 22:06:22 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');