movim/feedcleaner

A simple PHP library that clean RSS feeds to Atom 1.0

Maintainers

👁 edhelas

Package info

github.com/edhelas/feedcleaner

pkg:composer/movim/feedcleaner

Statistics

Installs: 114

Dependents: 0

Suggesters: 0

Stars: 3

Open Issues: 1

dev-master 2024-10-23 17:09 UTC

Requires

Requires (Dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

BSD-3-Clause e34e0e807bb451da7a86d47ccdb21a2aebca8754

  • Timothée Jaussoin <edhelas.woop@movim.eu>

atomfeedrssclean

This package is not auto-updated.

Last update: 2026-06-29 03:19:11 UTC


README

A simple PHP library that clean RSS feeds to Atom 1.0

Load FeedCleaner

To load FeedCleaner in your project just include the library to your composer file

{
 "require": {
 "movim/feedcleaner": "dev-master"
 }
}

Use FeedCleaner

use FeedCleaner\Parser;

$parser = new Parser; // We instanciate the parser
$parser->setXML($xml); // We set the XML of the current feed
$parser->parse(); // We parse and clean it
$parser->generate(); // And finally we display it !