oliezekat/mylastrss

Simple yet powerfull class to parse several RSS & Atom feeds

Maintainers

Package info

github.com/oliezekat/mYLastRSS

pkg:composer/oliezekat/mylastrss

Transparency log

Statistics

Installs: 79

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 9

1.0.16 2026-08-16 18:01 UTC

This package is auto-updated.

Last update: 2026-08-25 23:51:59 UTC


README

Simple yet powerfull PHP class to parse and merge several RSS, RDF, Atom feeds

Installation

composer require oliezekat/mylastrss

Suggests

  • Setup PHP with allow_url_fopen to enable fopen transport to fetch URLs of feeds
  • Setup PHP with Open SSL extension (with root certificates bundle) to allow fopen transport to fetch URLs of feeds over HTTPS protocole
  • Include Requests or add "rmccue/requests" to your composer.json which was use as default transport to fetch URLs of feeds

Usage

use \mYLastRSS;

$rss = new \mYLastRSS();
$result = $rss->Get(
    [
    'https://sourceforge.net/p/mylastrss/news/feed.rss',
    'https://github.com/oliezekat/mYLastRSS/releases.atom',
    ]
);
if (is_array($result) && isset($result['items']) && is_array($result['items'])) {
    ...
}

Resources