PHPackages                             prusmarcin/parser-rss-atom - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Parsing &amp; Serialization](/categories/parsing)
4. /
5. prusmarcin/parser-rss-atom

ActiveLibrary[Parsing &amp; Serialization](/categories/parsing)

prusmarcin/parser-rss-atom
==========================

Parser RSS/Atom

v0.1(8y ago)07MITPHPPHP &gt;=7.1.0

Since Apr 4Pushed 8y agoCompare

[ Source](https://github.com/prusmarcin/parser-rss-atom)[ Packagist](https://packagist.org/packages/prusmarcin/parser-rss-atom)[ Docs](https://github.com/prusmarcin/parserRssAtom)[ RSS](/packages/prusmarcin-parser-rss-atom/feed)WikiDiscussions master Synced 5d ago

READMEChangelogDependencies (1)Versions (2)Used By (0)

Package ParserRssAtom
=====================

[](#package-parserrssatom)

[![Total Downloads](https://camo.githubusercontent.com/46d7a0044d5b8f4ee1d0bac85597a47df8c7ac01d39e6d80a2101e96bfc3aa3d/687474703a2f2f696d672e736869656c64732e696f2f7061636b61676973742f646d2f707275736d617263696e2f7061727365722d7273732d61746f6d2e737667)](https://packagist.org/packages/prusmarcin/parser-rss-atom)[![Latest Stable Version](https://camo.githubusercontent.com/3ce8daf4bd31034a2a715a3154d479b217ac9cc9754be8256a6e8fbc03f53478/687474703a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f707275736d617263696e2f7061727365722d7273732d61746f6d2e737667)](https://packagist.org/packages/prusmarcin/parser-rss-atom)[![License](https://camo.githubusercontent.com/5a911ddcd16b9110e7821386ffd8d637005a8b856c14a3c0861b955e91da4eba/687474703a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d6c69676874677265792e737667)](https://github.com/prusmarcin/parser-rss-atom/blob/master/LICENSE)

- [Installation](#installation)
- [Usage](#usage)
- [Commands](#commands)
- [Information](#information)
- [Testing](#testing)
- [Contributing](#contributing)
- [Credits](#credits)
- [License](#license)

Installation
------------

[](#installation)

Add the prusmarcin/parserRssAtom package to your `composer.json` file.

```
{
    "require": {
        "prusmarcin/parser-rss-atom": "0.*"
    }
}
```

Or via the command line in the root of your application installation.

```
$ composer require "prusmarcin/parser-rss-atom:0.*"
```

Usage
-----

[](#usage)

```
use MarcinPrus\Parser\ParserClass as Parser;
use MarcinPrus\Save\SaveFileClass as Save;

if (isset($argc) && isset($argv)) {
    $parser = new Parser();
    $parser->requestMethod = 'curl';
    $parser->run();
    $parser->parseCliParameters($argc, $argv);

    $save = new Save();
    $save->fileType = $parser->fileType;
    $response = $save->toFile(
        $parser->path, $parser->saveOption, $parser->parseContent()
    );
} else {}
```

Commands
--------

[](#commands)

Use onlny by CLI: Windows CMD, Unix Shell

```
$ php src/console.php csv:simple http://feeds.nationalgeographic.com/ng/News/News_Main eksport_prosty.csv
```

OR

```
$ php src/console.php csv:extended http://feeds.nationalgeographic.com/ng/News/News_Main eksport_prosty.csv
```

Result array

```
Array
(
    [0] => Array
        (
            [info] => 1
            [message] => Success - The file export_prosty.csv was saved in the root directory of the application.
        )

)
```

Information
-----------

[](#information)

A csv file is written to the disk. The columns are separated by a `Tab`.

Testing
-------

[](#testing)

```
$ phpunit
```

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](https://github.com/prusmarcin/parserRssAtom/blob/master/CONTRIBUTING.md) for details.

Credits
-------

[](#credits)

- [Prus Marcin](https://github.com/prusmarcin)
- [My portfolio](https://prusmarcin.pl)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](https://github.com/prusmarcin/parserRssAtom/blob/master/LICENSE) for more information.

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

2964d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/fc40f499d770cdd4f34717cc85e85ad8b45a8cccff1e79d548f489a969b0ce09?d=identicon)[prusmarcin](/maintainers/prusmarcin)

---

Top Contributors

[![prusmarcin](https://avatars.githubusercontent.com/u/36367239?v=4)](https://github.com/prusmarcin "prusmarcin (8 commits)")

---

Tags

parser

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/prusmarcin-parser-rss-atom/health.svg)

```
[![Health](https://phpackages.com/badges/prusmarcin-parser-rss-atom/health.svg)](https://phpackages.com/packages/prusmarcin-parser-rss-atom)
```

###  Alternatives

[nikic/php-parser

A PHP parser written in PHP

17.4k902.6M1.8k](/packages/nikic-php-parser)[doctrine/lexer

PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.

11.2k910.8M118](/packages/doctrine-lexer)[erusev/parsedown

Parser for Markdown.

15.0k151.8M732](/packages/erusev-parsedown)[league/commonmark

Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)

2.9k404.0M702](/packages/league-commonmark)[masterminds/html5

An HTML5 parser and serializer.

1.8k242.8M229](/packages/masterminds-html5)[sabberworm/php-css-parser

Parser for CSS Files written in PHP

1.8k191.2M65](/packages/sabberworm-php-css-parser)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
