PHPackages                             tillklockmann/naona - 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. tillklockmann/naona

ActiveLibrary

tillklockmann/naona
===================

A really simple template engine

1.0.1(5y ago)16MITPHP

Since Sep 20Pushed 2y ago1 watchersCompare

[ Source](https://github.com/tillklockmann/naona)[ Packagist](https://packagist.org/packages/tillklockmann/naona)[ RSS](/packages/tillklockmann-naona/feed)WikiDiscussions main Synced today

READMEChangelog (1)DependenciesVersions (3)Used By (0)

Naona (Kiswahili for 'I see')
=============================

[](#naona-kiswahili-for-i-see)

A really simple template engine.

install with composer
---------------------

[](#install-with-composer)

```
composer require tillklockmann/naona:1.0.1

```

usage
-----

[](#usage)

Create a views folder in the root dir to store the templates. Template files are supposed to have the following naming convention:

**template-name.view.php**

Instantiate the View class

```
$view = new Naona\View;
```

Optionally you can set the path to the template folder:

```
$view = new Naona\View('path\to\folder');
```

Display the template with `render()` .

```
$view->template('index')->render();
```

Set template variables `set(string key, mixed value)`

```
// Controller.php
$myTitle = 'Great Website';
$this->view->template('index')
    ->set('title', $myTitle)
    ->render();
```

In the template file

```
// index.view.php

```

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

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

Total

2

Last Release

2057d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/92a56629c63f3247cae3f91344849cb3c05dc5eb446cec7d84f5dcc307ba55e3?d=identicon)[tkm.websolution](/maintainers/tkm.websolution)

---

Top Contributors

[![tillklockmann](https://avatars.githubusercontent.com/u/39347141?v=4)](https://github.com/tillklockmann "tillklockmann (7 commits)")

### Embed Badge

![Health badge](/badges/tillklockmann-naona/health.svg)

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

PHPackages © 2026

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