PHPackages                             ngodinhloc/jennifer - 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. ngodinhloc/jennifer

ActiveLibrary[Framework](/categories/framework)

ngodinhloc/jennifer
===================

Jennifer Framework

1.1.7(3y ago)5151MITPHPPHP ^7.0

Since Mar 24Pushed 3y ago2 watchersCompare

[ Source](https://github.com/ngodinhloc/jennifer)[ Packagist](https://packagist.org/packages/ngodinhloc/jennifer)[ Docs](https://github.com/ngodinhloc/jennifer)[ RSS](/packages/ngodinhloc-jennifer/feed)WikiDiscussions master Synced 2d ago

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

Jennifer - A Simple PHP Framework
=================================

[](#jennifer---a-simple-php-framework)

Jennifer is a simple PHP framework that implements MVC pattern.

Configuration
=============

[](#configuration)

```
composer require ngodinhloc/jennifer
```

Usage
=====

[](#usage)

Single Point Entry
------------------

[](#single-point-entry)

#### index.php

[](#indexphp)

```
use Jennifer\Http\Response;
use Jennifer\Http\Router;
use Jennifer\Sys\System;

try {
    $system = new System([DOC_ROOT . "/config/env.ini"]);
    $system->setRouter(new Router([DOC_ROOT . "/config/routes.ini"]))->loadView()->renderView();
} catch (Exception $exception) {
    (new Response())->error($exception->getMessage(), $exception->getCode());
}
```

#### api/index.php

[](#apiindexphp)

```
use Jennifer\Api\Api;
use Jennifer\Http\Response;
use Jennifer\Sys\System;
use thedaysoflife\Api\ServiceMapper;

try {
    $system = new System([DOC_ROOT . "/config/env.ini"]);
    $system->setApi(new Api(new ServiceMapper()))->runAPI();
} catch (Exception $exception) {
    (new Response())->error($exception->getMessage(), $exception->getCode());
}
```

#### controllers/index.php

[](#controllersindexphp)

```
use Jennifer\Http\Response;
use Jennifer\Http\Router;
use Jennifer\Sys\System;

try {
    $system = new System([DOC_ROOT . "/config/env.ini"]);
    $system->setRouter(new Router([DOC_ROOT . "/config/routes.ini"]))->loadController()->runController();
} catch (Exception $exception) {
    (new Response())->error($exception->getMessage(), $exception->getCode());
}
```

For example of implementation and usage, please take a look at Thedaysoflife project  which was developed using Jennifer framework

###  Health Score

28

—

LowBetter than 52% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity61

Established project with proven stability

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

Recently: every ~345 days

Total

9

Last Release

1274d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/62313876?v=4)[Micronative](/maintainers/Micronative)[@micronative](https://github.com/micronative)

---

Top Contributors

[![ngodinhloc](https://avatars.githubusercontent.com/u/23373100?v=4)](https://github.com/ngodinhloc "ngodinhloc (112 commits)")

---

Tags

ajaxajax-mvcframeworkjenniferjennifer-frameworkjquerymvc-frameworkmvc-patternphptemplatethedaysoflifeMVC Frameworkphp framework

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/ngodinhloc-jennifer/health.svg)

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

###  Alternatives

[phphleb/framework

Engine for Framework HLEB2

233318.8k12](/packages/phphleb-framework)[popphp/popphp

Pop PHP Framework, a lightweight, robust PHP framework

5714.6k10](/packages/popphp-popphp)[rougin/slytherin

A simple and extensible PHP micro-framework.

1114.5k9](/packages/rougin-slytherin)[zemit-cms/core

Build Phalcon REST APIs faster with database-first scaffolding, model relationships, eager loading, identity, permissions, CLI, and WebSocket support.

138.5k1](/packages/zemit-cms-core)[duxweb/dux-lite

The lightweight framework based on slim php

161.0k9](/packages/duxweb-dux-lite)

PHPackages © 2026

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