PHPackages                             suomato/hubspot-rss-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. suomato/hubspot-rss-parser

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

suomato/hubspot-rss-parser
==========================

Parsing HubSpot rss-feed and turning it into Array of PHP objects

v1.0.0(7y ago)245MITPHPPHP ^7.0

Since Jul 14Pushed 7y ago1 watchersCompare

[ Source](https://github.com/suomato/hubspot-rss-parser)[ Packagist](https://packagist.org/packages/suomato/hubspot-rss-parser)[ RSS](/packages/suomato-hubspot-rss-parser/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (2)Dependencies (1)Versions (3)Used By (0)

HubSpot rss-feed Parser
=======================

[](#hubspot-rss-feed-parser)

> This library is for parsing HubSpot rss-feed to PHP Object.

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

[](#installation)

```
composer require suomato/hubspot-rss-parser

```

Example
-------

[](#example)

```
// HubSpot blog RSS feed URL
$rss_feed = 'path/to/rss.xml'

$parser = new Suomato\HubspotParser($rss_feed);

// Array of HubspotPost objects
$posts = $parser->get();

// The First Post Title
$posts[0]->title;

// The First Post link
$posts[0]->link;

// The First Post Image Source
$posts[0]->image['src'];

// The First Post Image alt text
$posts[0]->image['alt'];

// Array of Categories of the First Post
$posts[0]->categories;

```

Filtering Posts
---------------

[](#filtering-posts)

### Include

[](#include)

```
// Only get posts with categories 'foo' OR 'bar'
$posts = $parser->get([
  'include' => ['foo', 'bar']
]);

```

### Exclude

[](#exclude)

```
// Only get posts without categories 'foo' OR 'bar'
$posts = $parser->get([
  'exclude' => ['foo', 'bar']
]);

```

### Limit

[](#limit)

```
// Only get first three posts
$posts = $parser->get([
  'limit' => 3
]);

```

### Offset

[](#offset)

```
// Skips first three posts
$posts = $parser->get([
  'offset' => 3
]);

```

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity58

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 ~0 days

Total

2

Last Release

2857d ago

Major Versions

v0.1.0 → v1.0.02018-07-14

### Community

Maintainers

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

---

Top Contributors

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

---

Tags

hubspotparserrss-feedparserhubspotrss-feed

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/suomato-hubspot-rss-parser/health.svg)

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

###  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)
