PHPackages                             minetro/simple-blogger - 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. [Framework](/categories/framework)
4. /
5. minetro/simple-blogger

Abandoned → [blogette/platform](/?search=blogette%2Fplatform)ArchivedProject[Framework](/categories/framework)

minetro/simple-blogger
======================

Simple static blogger based on Nette

0.1.2(11y ago)25.0k1BSD-3-ClausePHPPHP &gt;=5.4.0CI failing

Since May 7Pushed 5mo ago2 watchersCompare

[ Source](https://github.com/contributte/simple-blogger)[ Packagist](https://packagist.org/packages/minetro/simple-blogger)[ Docs](https://github.com/minetro/simple-blogger)[ RSS](/packages/minetro-simple-blogger/feed)WikiDiscussions master Synced 1mo ago

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

[![](https://camo.githubusercontent.com/acc42a4c004b5318d4820e332f8a9cfd6f6040058ed29f6472faad4ef9e2c208/68747470733a2f2f686561746261646765722e76657263656c2e6170702f6769746875622f726561646d652f636f6e74726962757474652f73696d706c652d626c6f676765722f3f646570726563617465643d31)](https://camo.githubusercontent.com/acc42a4c004b5318d4820e332f8a9cfd6f6040058ed29f6472faad4ef9e2c208/68747470733a2f2f686561746261646765722e76657263656c2e6170702f6769746875622f726561646d652f636f6e74726962757474652f73696d706c652d626c6f676765722f3f646570726563617465643d31)

 [![](https://camo.githubusercontent.com/a8b1cd856d7d396fdebbe46947cc3507490acc267a02361e5e53bb7b820c95c3/68747470733a2f2f62616467656e2e6e65742f62616467652f737570706f72742f6769747465722f6379616e)](https://bit.ly/ctteg) [![](https://camo.githubusercontent.com/86d6416fc04f8bcc3daa7bf881526b9953b9726b1164d05c157c8713e3a73418/68747470733a2f2f62616467656e2e6e65742f62616467652f737570706f72742f666f72756d2f79656c6c6f77)](https://bit.ly/cttfo) [![](https://camo.githubusercontent.com/5d170ab94e6d594609561e16fe0f9e4293968fbd4dfcfafc5e11efc1415ef09c/68747470733a2f2f62616467656e2e6e65742f62616467652f73706f6e736f722f646f6e6174696f6e732f463936383534)](https://contributte.org/partners.html)

 Website 🚀 [contributte.org](https://contributte.org) | Contact 👨🏻‍💻 [f3l1x.io](https://f3l1x.io) | Twitter 🐦 [@contributte](https://twitter.com/contributte)

Disclaimer
----------

[](#disclaimer)

⚠️This project is no longer being maintained. Please use [blogette/platform](https://github.com/blogette/platform).Composer[`minetro/simple-blogger`](https://packagist.org/packages/minetro/simple-blogger)Version[![](https://camo.githubusercontent.com/0ef0e21a376f0344953b1c9ad4de549f92e41a81cc09ee1bd99d6ca354bc7ed5/68747470733a2f2f62616467656e2e6e65742f7061636b61676973742f762f6d696e6574726f2f73696d706c652d626c6f67676572)](https://camo.githubusercontent.com/0ef0e21a376f0344953b1c9ad4de549f92e41a81cc09ee1bd99d6ca354bc7ed5/68747470733a2f2f62616467656e2e6e65742f7061636b61676973742f762f6d696e6574726f2f73696d706c652d626c6f67676572)PHP[![](https://camo.githubusercontent.com/514cf7c22afa1fa0b132a046841956e533968ad84fab60f3719b02d4cef00196/68747470733a2f2f62616467656e2e6e65742f7061636b61676973742f7068702f6d696e6574726f2f73696d706c652d626c6f67676572)](https://camo.githubusercontent.com/514cf7c22afa1fa0b132a046841956e533968ad84fab60f3719b02d4cef00196/68747470733a2f2f62616467656e2e6e65742f7061636b61676973742f7068702f6d696e6574726f2f73696d706c652d626c6f67676572)License[![](https://camo.githubusercontent.com/81876d7f3ed1308eaf78fc7eb3f5670fe4dfc6bdef915cf408bfd1cec0d17bf5/68747470733a2f2f62616467656e2e6e65742f6769746875622f6c6963656e73652f636f6e74726962757474652f73696d706c652d626c6f67676572)](https://camo.githubusercontent.com/81876d7f3ed1308eaf78fc7eb3f5670fe4dfc6bdef915cf408bfd1cec0d17bf5/68747470733a2f2f62616467656e2e6e65742f6769746875622f6c6963656e73652f636f6e74726962757474652f73696d706c652d626c6f67676572)About
-----

[](#about)

Simple static blogger based on Nette.

Usage
-----

[](#usage)

Register `BloggerExtension` to your other extensions.

```
extensions:
	blog: Minetro\Blog\Simple\DI\BloggerExtension
```

You have to set folder where [Nette\\Utils\\Finder](http://api.nette.org/2.3/Nette.Utils.Finder.html) will be looking for **posts**.

```
blog:
	posts: %appDir%/data
```

Posts
-----

[](#posts)

Post consists of two parts. `Meta` file and `content` file.

### Metafile

[](#metafile)

Let's we have a file in *data/201505/post.neon*. All meta files must have `neon` extension.

Take a look to example meta file.

```
id: 1
date: 06.05.2015
title: Some cool title
post: %file%/post.md

seo:
	title: 'Best framework in the world'
	keywords: 'nette, php, framework'
	description: 'Nothing to say. It's a fact.'

tags:
	- php

config:
	comments: yes
	social: yes
	parser: parsedown
```

Required properties are **id**, **date**, **title** and **post**.

**Post** is a target to your `content` file. Content file could be `.md`, `.latte` or whatever. But you have to specific parser. In this case it is parsedown.

Model
-----

[](#model)

### PostsService

[](#postsservice)

To obtain all posts, one posts, order posts, filters posts here is `PostsService`.

`->findAll(Configuration $c)` - returns array of posts.

`->fetch(Configuration $c)` - returns just one posts or nothing.

### Configuration

[](#configuration)

There are 3 objects. **Criteria**, **Sorter** and **Paginator**.

`Criteria` - it is for posts filtering (excluding)

`Sorter` - it is for posts sorting

`Paginator` - it extends classic [Nette\\Utils\\Paginator](http://api.nette.org/2.3/Nette.Utils.Paginator.html)

View
----

[](#view)

View is not part of this library. You have to display posts by yourself.

Development
-----------

[](#development)

This package was maintained by these authors.

[ ![](https://avatars2.githubusercontent.com/u/538058?v=3&s=80)](https://github.com/f3l1x)---

Consider to [support](https://contributte.org/partners.html) **contributte** development team. Also thank you for using this package.

###  Health Score

35

—

LowBetter than 80% of packages

Maintenance49

Moderate activity, may be stable

Popularity21

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity50

Maturing project, gaining track record

 Bus Factor1

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

3

Last Release

4029d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/538058?v=4)[Milan Šulc](/maintainers/f3l1x)[@f3l1x](https://github.com/f3l1x)

---

Top Contributors

[![f3l1x](https://avatars.githubusercontent.com/u/538058?v=4)](https://github.com/f3l1x "f3l1x (18 commits)")[![petrparolek](https://avatars.githubusercontent.com/u/6066243?v=4)](https://github.com/petrparolek "petrparolek (6 commits)")

---

Tags

bloggercontributtenette-frameworkphp

### Embed Badge

![Health badge](/badges/minetro-simple-blogger/health.svg)

```
[![Health](https://phpackages.com/badges/minetro-simple-blogger/health.svg)](https://phpackages.com/packages/minetro-simple-blogger)
```

###  Alternatives

[nette/bootstrap

🅱 Nette Bootstrap: the simple way to configure and bootstrap your Nette application.

68535.8M592](/packages/nette-bootstrap)[nette/nette

👪 Nette Framework - innovative framework for fast and easy development of secured web applications in PHP (metapackage)

1.6k2.8M335](/packages/nette-nette)[brandembassy/slim-nette-extension

19190.2k](/packages/brandembassy-slim-nette-extension)[nette/web-project

Nette: Standard Web Project

10991.8k](/packages/nette-web-project)[kdyby/autowired

Syntax sugar for working with services in Nette Framework

30885.7k9](/packages/kdyby-autowired)[nasext/dependent-select-box

Dependent Select Box for Nette Framework.

21262.8k2](/packages/nasext-dependent-select-box)

PHPackages © 2026

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