PHPackages                             spaze/feed-exports - 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. [API Development](/categories/api)
4. /
5. spaze/feed-exports

ActiveLibrary[API Development](/categories/api)

spaze/feed-exports
==================

Atom feed Response and related objects for Nette framework

v2.0.0(6mo ago)327MITPHPPHP ^8.3CI passing

Since May 20Pushed 2d ago1 watchersCompare

[ Source](https://github.com/spaze/feed-exports)[ Packagist](https://packagist.org/packages/spaze/feed-exports)[ RSS](/packages/spaze-feed-exports/feed)WikiDiscussions main Synced 3w ago

READMEChangelog (5)Dependencies (7)Versions (9)Used By (0)

feed-exports
============

[](#feed-exports)

Atom feed Response and related objects for Nette framework

Nette Framework usage
---------------------

[](#nette-framework-usage)

```
use Spaze\Exports\Atom\Constructs\AtomPerson;
use Spaze\Exports\Atom\Constructs\AtomText;
use Spaze\Exports\Atom\Constructs\AtomTextType;
use Spaze\Exports\Atom\Elements\AtomEntry;
use Spaze\Exports\Atom\AtomFeed;
use Spaze\Exports\Bridges\Nette\AtomResponse;

// [ ... ]

    public function actionArticles(?string $param = null): void
    {
        $now = new \DateTimeImmutable('2020-10-20 10:20:20 Europe/Prague');

        $feed = new AtomFeed('https://url', 'Feed Title');
        $feed->setLinkSelf('https://url');
        $feed->setUpdated($now);
        $feed->setAuthor(new AtomPerson('foo bar'));

        $entry = new AtomEntry(
            'https://href/1',
            new AtomText('title-1', AtomTextType::Html),
            new \DateTimeImmutable('2019-12-20 12:20:20 Europe/Prague'),
            new \DateTimeImmutable('2019-12-16 12:20:20 Europe/Prague')
        );
        $entry->setContent(new AtomText('some content-1'));
        $feed->addEntry($entry);

        $entry = new AtomEntry(
            'https://href/2',
            new AtomText('title-2', AtomTextType::Text),
            new \DateTimeImmutable('2018-12-20 12:20:20 Europe/Prague'),
            new \DateTimeImmutable('2018-12-16 12:20:20 Europe/Prague')
        );
        $entry->setContent(new AtomText('other content-2'));
        $feed->addEntry($entry);

        $this->sendResponse(new AtomResponse($feed));
    }

// [ ... ]
```

###  Health Score

51

—

FairBetter than 95% of packages

Maintenance85

Actively maintained with recent releases

Popularity12

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity83

Battle-tested with a long release history

 Bus Factor1

Top contributor holds 95% 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

Every ~446 days

Recently: every ~457 days

Total

8

Last Release

197d ago

Major Versions

v0.2.2 → v1.0.02022-11-27

v1.1.0 → v2.0.02025-12-10

PHP version history (4 changes)v0.1.0PHP ~7.1

v0.2.2PHP ^7.1 || ^8.0

v1.0.0PHP ^8.0

v1.1.0PHP ^8.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/6777bd445610e6e458e4d41bdefa3070d2ed4e068323362353b061b15e9ff81b?d=identicon)[spaze](/maintainers/spaze)

---

Top Contributors

[![spaze](https://avatars.githubusercontent.com/u/1966648?v=4)](https://github.com/spaze "spaze (76 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (4 commits)")

###  Code Quality

Static AnalysisPHPStan

Type Coverage Yes

### Embed Badge

![Health badge](/badges/spaze-feed-exports/health.svg)

```
[![Health](https://phpackages.com/badges/spaze-feed-exports/health.svg)](https://phpackages.com/packages/spaze-feed-exports)
```

###  Alternatives

[apigen/apigen

PHP source code API generator.

2.2k629.9k227](/packages/apigen-apigen)[tomaj/nette-api

Nette api

36269.8k6](/packages/tomaj-nette-api)

PHPackages © 2026

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