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

ActiveLibrary

aura/blog
=========

Aura blog example

2.0.0-alpha1(11y ago)867BSD-2-ClausePHP

Since Nov 18Pushed 11y ago1 watchersCompare

[ Source](https://github.com/friendsofaura/Aura.Blog)[ Packagist](https://packagist.org/packages/aura/blog)[ RSS](/packages/aura-blog/feed)WikiDiscussions master Synced 1w ago

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

Aura.Blog
=========

[](#aurablog)

Aura version 2 blog example using the [Action Domain Responder](https://github.com/pmjones/adr).

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

[](#installation)

```
composer create-project -s dev aura/web-project aurav2
cd aurav2
composer require "aura/blog:2.0.*@dev"
```

Create a database and run the code.

```
SET NAMES utf8;
SET time_zone = '+00:00';
SET foreign_key_checks = 0;
SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO';

DROP TABLE IF EXISTS `blog`;
CREATE TABLE `blog` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `intro` tinytext NOT NULL,
  `body` text NOT NULL,
  `author` varchar(200) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
```

Edit `config/Common.php` and in `define()` method we need to define the database connection as below.

```
$di->params['Aura\Sql\ExtendedPdo'] = array(
    'dsn' => 'mysql:dbname=auraauth;host=127.0.0.1',
    'username' => 'root',
    'password' => 'mysqlroot'
);
```

> Change the `username` and `password` according to yours.

Run your local php server

```
php -S localhost:8000 web/index.php
```

And browse `http://localhost:8000/blog`

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity49

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

Unknown

Total

1

Last Release

4199d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/29dba0e6add8d89fd3fc6126b213d5d2f57538ea78318963025d6ea98db34161?d=identicon)[harikt](/maintainers/harikt)

---

Top Contributors

[![harikt](https://avatars.githubusercontent.com/u/120454?v=4)](https://github.com/harikt "harikt (22 commits)")

### Embed Badge

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

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

###  Alternatives

[yourls/yourls

Your Own URL Shortener

11.9k27.7k1](/packages/yourls-yourls)[aura/framework

The Aura Framework package, when combined with a system skeleton, provides a full-stack framework built from Aura component packages.

9912.3k3](/packages/aura-framework)[ray/media-query

PHP interface-based SQL framework

11220.7k2](/packages/ray-media-query)[aura/web-project

A minimal web framework built from Aura v2 packages

601.6k](/packages/aura-web-project)[aura/framework-project

A minimal web+cli framework built from Aura v2 packages

281.5k](/packages/aura-framework-project)[impresscms/impresscms

ImpressCMS is an open source content management system with a focus on security and speed

291.1k](/packages/impresscms-impresscms)

PHPackages © 2026

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