mohitrawat/rss-feed-parser

A PHP package to parse RSS feeds and fetch full content from each article.

dev-main 2025-05-04 16:49 UTC

This package is not auto-updated.

Last update: 2025-06-16 15:35:29 UTC


README

/ README.md

RSS Feed Parser

A PHP package to parse RSS feeds and fetch full content from each article using Guzzle.

Installation

composer require mohitrawat/rss-feed-parser

Usage

use MohitRawat\RssFeedParser\RssFeedParser;

$parser = new RssFeedParser('https://example.com/rss');
$articles = $parser->fetch();
print_r($articles);

License

MIT