PHPackages                             yaroslawww/laravel-external-feed-parser - 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. yaroslawww/laravel-external-feed-parser

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

yaroslawww/laravel-external-feed-parser
=======================================

Parse external feed.

1.1.0(4y ago)011MITPHPPHP ^8.0

Since Jan 14Pushed 4y ago1 watchersCompare

[ Source](https://github.com/yaroslawww/laravel-external-feed-parser)[ Packagist](https://packagist.org/packages/yaroslawww/laravel-external-feed-parser)[ Docs](https://github.com/yaroslawww/laravel-external-feed-parser)[ RSS](/packages/yaroslawww-laravel-external-feed-parser/feed)WikiDiscussions master Synced 3d ago

READMEChangelogDependencies (7)Versions (3)Used By (0)

Laravel external feed parser.
=============================

[](#laravel-external-feed-parser)

[![Packagist License](https://camo.githubusercontent.com/d607fc17a256496547a0292ec2dcc6732ef5f939aa44e331b6d420b06d0dbe89/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f7961726f736c617777772f6c61726176656c2d65787465726e616c2d666565642d7061727365723f636f6c6f723d253233346463373166)](https://camo.githubusercontent.com/d607fc17a256496547a0292ec2dcc6732ef5f939aa44e331b6d420b06d0dbe89/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f7961726f736c617777772f6c61726176656c2d65787465726e616c2d666565642d7061727365723f636f6c6f723d253233346463373166)[![Packagist Version](https://camo.githubusercontent.com/7d6db1a86695efcfc6a4b84c29e6776b98731116aeed9dba31fdcc797bb29e54/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7961726f736c617777772f6c61726176656c2d65787465726e616c2d666565642d706172736572)](https://packagist.org/packages/yaroslawww/laravel-external-feed-parser)[![Total Downloads](https://camo.githubusercontent.com/c89d91dd0c4c604e4db644525bcb6c2528b7c03f629eae48a5c705e6a7b7ee86/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7961726f736c617777772f6c61726176656c2d65787465726e616c2d666565642d706172736572)](https://packagist.org/packages/yaroslawww/laravel-external-feed-parser)[![Build Status](https://camo.githubusercontent.com/04825b7de0e4bc24802a3da88c174311e6188d0c7aa3603e6a844216012ef692/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f7961726f736c617777772f6c61726176656c2d65787465726e616c2d666565642d7061727365722f6261646765732f6275696c642e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/yaroslawww/laravel-external-feed-parser/build-status/master)[![Code Coverage](https://camo.githubusercontent.com/143c4d5695398bc31b10c8654b6d5616780f84f65be9a3f244b91b987ea55caf/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f7961726f736c617777772f6c61726176656c2d65787465726e616c2d666565642d7061727365722f6261646765732f636f7665726167652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/yaroslawww/laravel-external-feed-parser/?branch=master)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/f4a22ecb49e8990ddecbc17128adffed350d05584e735ee4e4ccf9f94627de1e/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f7961726f736c617777772f6c61726176656c2d65787465726e616c2d666565642d7061727365722f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/yaroslawww/laravel-external-feed-parser/?branch=master)

"Template method" package to parse external feed.

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

[](#installation)

Install the package via composer:

```
composer require yaroslawww/laravel-external-feed-parser
```

Optionally you can publish the config file with:

```
php artisan vendor:publish --provider="ExternalFeedParser\ServiceProvider" --tag="config"
```

Usage
-----

[](#usage)

Add config to `config/services.php` or `config/external-feed-parser.php`.

```
'jobs-feeds' => [
    'foobar' => [
        'pull' => [
            'class'   => \ExternalFeedParser\Pull\XmlFeedPull::class,
            'options' => [
                'url'        => 'https://www.foobar.co.uk/rssfeed/example.aspx',
                'listingKey' => 'baz',
            ],
        ],
        'convert' => [
            'class'   => \ExternalFeedParser\Converters\SimpleConverter::class,
            'options' => [
                'entityClass' => \ExternalFeedParser\Entity\ExternalEntity::class,
            ],
        ],
    ],
],
```

```
FeedParser::provider('foobar')
    ->parse()
    ->each(function (ExternalEntity $entity) {
        $entity->get('baz')
    });
```

Credits
-------

[](#credits)

- [![Think Studio](https://camo.githubusercontent.com/8e541bece07d503c85a126b5294865faa00e27371048772f566a0cce8c01fd3a/68747470733a2f2f7961726f736c617777772e6769746875622e696f2f696d616765732f73706f6e736f72732f7061636b616765732f6c6f676f2d7468696e6b2d73747564696f2e706e67)](https://think.studio/)

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity55

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

Every ~5 days

Total

2

Last Release

1574d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/23663794?v=4)[yaroslawww](/maintainers/yaroslawww)[@yaroslawww](https://github.com/yaroslawww)

---

Top Contributors

[![yaroslawww](https://avatars.githubusercontent.com/u/23663794?v=4)](https://github.com/yaroslawww "yaroslawww (2 commits)")

---

Tags

laravelfeed

###  Code Quality

TestsPHPUnit

Static AnalysisPsalm

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/yaroslawww-laravel-external-feed-parser/health.svg)

```
[![Health](https://phpackages.com/badges/yaroslawww-laravel-external-feed-parser/health.svg)](https://phpackages.com/packages/yaroslawww-laravel-external-feed-parser)
```

###  Alternatives

[ultrono/laravel-sitemap

Sitemap generator for Laravel 11, 12 and 13

36412.6k6](/packages/ultrono-laravel-sitemap)[mischasigtermans/laravel-toon

Token-Optimized Object Notation encoder/decoder for Laravel with intelligent nested object handling

13113.1k](/packages/mischasigtermans-laravel-toon)[dniccum/nova-documentation

A Laravel Nova tool that allows you to add markdown-based documentation to your administrator's dashboard.

37116.4k](/packages/dniccum-nova-documentation)[torann/podcastfeed

Generate RSS feeds for podcasts in Laravel 5.

485.9k](/packages/torann-podcastfeed)[sbsaga/toon

🧠 TOON for Laravel — a compact, human-readable, and token-efficient data format for AI prompts &amp; LLM contexts. Perfect for ChatGPT, Gemini, Claude, Mistral, and OpenAI integrations (JSON ⇄ TOON).

6115.6k](/packages/sbsaga-toon)[json-mapper/laravel-package

The JsonMapper package for Laravel

25170.4k3](/packages/json-mapper-laravel-package)

PHPackages © 2026

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