PHPackages                             anomaly/blog-module - 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. anomaly/blog-module

Abandoned → [anomaly/posts-module](/?search=anomaly%2Fposts-module)Streams-addon

anomaly/blog-module
===================

A versatile articles and posts manager.

v2.7.0(5mo ago)328321MITPHP

Since Aug 2Pushed 5mo ago2 watchersCompare

[ Source](https://github.com/anomalylabs/posts-module)[ Packagist](https://packagist.org/packages/anomaly/blog-module)[ Docs](http://pyrocms.com/addons/anomaly/posts-module)[ RSS](/packages/anomaly-blog-module/feed)WikiDiscussions 2.7 Synced 1mo ago

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

Posts Module
============

[](#posts-module)

*anomaly.module.posts*

#### A versatile articles and posts manager.

[](#a-versatile-articles-and-posts-manager)

The Posts Module provides a flexible blogging and article management system with categories, tags, and multiple post types.

Features
--------

[](#features)

- Post management
- Category organization
- Tag support
- Multiple post types
- Draft &amp; scheduling
- Featured posts
- RSS feeds
- SEO optimization

Usage
-----

[](#usage)

### Accessing Posts

[](#accessing-posts)

```
use Anomaly\PostsModule\Post\Contract\PostRepositoryInterface;

$posts = app(PostRepositoryInterface::class);

// Get all posts
$allPosts = $posts->all();

// Get published posts
$published = $posts->findAllPublished();

// Get post by slug
$post = $posts->findBySlug('my-article');

// Get posts by category
$posts = $posts->findByCategory($category);
```

### In Twig

[](#in-twig)

```
{# List posts #}
{% for post in posts().published().get() %}

        {{ post.title }}
        {{ post.summary }}
        {{ post.publish_at|date('F j, Y') }}

{% endfor %}

{# Display single post #}

    {{ post.title }}
    {{ post.publish_at|date('F j, Y') }}
    {{ post.content|raw }}

    {# Categories & Tags #}
    {% for category in post.categories %}
        {{ category.name }}
    {% endfor %}

    {% for tag in post.tags %}
        {{ tag.name }}
    {% endfor %}

{# Recent posts #}
{% for post in posts().published().orderBy('publish_at', 'desc').limit(5).get() %}
    {{ post.title }}
{% endfor %}
```

### Categories &amp; Tags

[](#categories--tags)

```
{# All categories #}
{% for category in categories().get() %}

        {{ category.name }}

{% endfor %}

{# All tags #}
{% for tag in tags().get() %}

        {{ tag.name }}

{% endfor %}
```

Requirements
------------

[](#requirements)

- Streams Platform ^1.10
- PyroCMS 3.10+

License
-------

[](#license)

The Posts Module is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT).

###  Health Score

52

—

FairBetter than 96% of packages

Maintenance71

Regular maintenance activity

Popularity19

Limited adoption so far

Community23

Small or concentrated contributor base

Maturity83

Battle-tested with a long release history

 Bus Factor1

Top contributor holds 75.3% 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 ~19 days

Recently: every ~494 days

Total

200

Last Release

164d ago

Major Versions

v1.1.39 → v2.0.02016-02-18

### Community

Maintainers

![](https://www.gravatar.com/avatar/3dc718dba9317e897b74dcb30e5c06bd106e1ad72b2df5242b66bcc28053fbf3?d=identicon)[anomaly](/maintainers/anomaly)

---

Top Contributors

[![RyanThompson](https://avatars.githubusercontent.com/u/1099967?v=4)](https://github.com/RyanThompson "RyanThompson (146 commits)")[![Piterden](https://avatars.githubusercontent.com/u/5930429?v=4)](https://github.com/Piterden "Piterden (12 commits)")[![bloveless](https://avatars.githubusercontent.com/u/535135?v=4)](https://github.com/bloveless "bloveless (9 commits)")[![mallardduck](https://avatars.githubusercontent.com/u/619938?v=4)](https://github.com/mallardduck "mallardduck (7 commits)")[![JoelESvensson](https://avatars.githubusercontent.com/u/6786740?v=4)](https://github.com/JoelESvensson "JoelESvensson (4 commits)")[![jacksun101](https://avatars.githubusercontent.com/u/417021?v=4)](https://github.com/jacksun101 "jacksun101 (3 commits)")[![aidanwatt](https://avatars.githubusercontent.com/u/3669142?v=4)](https://github.com/aidanwatt "aidanwatt (3 commits)")[![mmodler](https://avatars.githubusercontent.com/u/1906217?v=4)](https://github.com/mmodler "mmodler (1 commits)")[![oimken](https://avatars.githubusercontent.com/u/5130712?v=4)](https://github.com/oimken "oimken (1 commits)")[![Pixney-William](https://avatars.githubusercontent.com/u/31292231?v=4)](https://github.com/Pixney-William "Pixney-William (1 commits)")[![Youhan](https://avatars.githubusercontent.com/u/2191898?v=4)](https://github.com/Youhan "Youhan (1 commits)")[![aldf](https://avatars.githubusercontent.com/u/11527940?v=4)](https://github.com/aldf "aldf (1 commits)")[![brignoni](https://avatars.githubusercontent.com/u/558767?v=4)](https://github.com/brignoni "brignoni (1 commits)")[![Eighke](https://avatars.githubusercontent.com/u/2734125?v=4)](https://github.com/Eighke "Eighke (1 commits)")[![huglester](https://avatars.githubusercontent.com/u/150731?v=4)](https://github.com/huglester "huglester (1 commits)")[![kiger](https://avatars.githubusercontent.com/u/2277562?v=4)](https://github.com/kiger "kiger (1 commits)")[![MarceauKa](https://avatars.githubusercontent.com/u/1665333?v=4)](https://github.com/MarceauKa "MarceauKa (1 commits)")

---

Tags

moduleStreamsposts

### Embed Badge

![Health badge](/badges/anomaly-blog-module/health.svg)

```
[![Health](https://phpackages.com/badges/anomaly-blog-module/health.svg)](https://phpackages.com/packages/anomaly-blog-module)
```

###  Alternatives

[nwidart/laravel-modules

Laravel Module management

6.1k14.6M274](/packages/nwidart-laravel-modules)

PHPackages © 2026

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