PHPackages                             mejuliver/jframework - 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. mejuliver/jframework

ActiveLibrary[Framework](/categories/framework)

mejuliver/jframework
====================

A lite PHP MVC Framework

36PHP

Since Nov 11Pushed 7y ago1 watchersCompare

[ Source](https://github.com/mejuliver/jframework)[ Packagist](https://packagist.org/packages/mejuliver/jframework)[ RSS](/packages/mejuliver-jframework/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependenciesVersions (2)Used By (0)

j-framework
===========

[](#j-framework)

Lite MVC PHP app framework

#### Routes

[](#routes)

Here you can define your route

Example

```
$route['sample'] = [
	false, // specify the default template name, if declared an controller, this will not be read
	'sample_controller@sample', // controller name, the '@' symbol is a delimiter between your controller name and the method e.g controller@method, if no method, index will be use by default
	false // models, provide an array if multiple e.g. ['model1','model2','model3']. If false, all models in the models folder will be loaded
];

```

Refer to routes.php

#### Controller

[](#controller)

All controllers must be put in 'controllers' folder. See 'controllers/Sample\_controller.php' sample.

#### Model

[](#model)

All models must be put in 'models folder'. See 'models/Sample\_model.php' sample

Example

```
//initialize model

use App\Models\ModelName as model

```

and then initialize it by

```
$model = new ModelName();

```

to your controller;

### View

[](#view)

All templates or anything that was tied up with the view must be put on 'templates' folder.

you can directly call the view by not specifying a controller name unto a route. If controller was declared then the view name will be skip

```
$route['home'] = [home_template] // this can be found inside the templates folder

```

### Config

[](#config)

(config.php) here you can put all the configurations for you app. Some of the default and required settings are

```
$app['url'] = ''; // leave this empty if app is not hosted on shared hosting
$app['title'] = '' // specify your app title
$app['db']['mysql'] = [..]; // database settings

```

### Recommended packages

[](#recommended-packages)

 validating inputs

```
use \Respect\Validation\Validator as v;

```

 mysql wrapper

```
use \MysqliDb as sqldb;

```

 email wrapper

```
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;

```

###  Health Score

21

—

LowBetter than 19% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 73.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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/05f5ba4d2437b0650f303f6291a209705f861b9080de52dba29806b967e1a39b?d=identicon)[mejuliver](/maintainers/mejuliver)

---

Top Contributors

[![mejuliver](https://avatars.githubusercontent.com/u/3602919?v=4)](https://github.com/mejuliver "mejuliver (55 commits)")[![electricfan](https://avatars.githubusercontent.com/u/10958843?v=4)](https://github.com/electricfan "electricfan (20 commits)")

### Embed Badge

![Health badge](/badges/mejuliver-jframework/health.svg)

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

###  Alternatives

[laravel/telescope

An elegant debug assistant for the Laravel framework.

5.2k67.8M192](/packages/laravel-telescope)[spiral/roadrunner

RoadRunner: High-performance PHP application server and process manager written in Go and powered with plugins

8.4k12.2M84](/packages/spiral-roadrunner)[nolimits4web/swiper

Most modern mobile touch slider and framework with hardware accelerated transitions

41.8k177.2k1](/packages/nolimits4web-swiper)[laravel/dusk

Laravel Dusk provides simple end-to-end testing and browser automation.

1.9k36.7M259](/packages/laravel-dusk)[laravel/prompts

Add beautiful and user-friendly forms to your command-line applications.

708181.8M596](/packages/laravel-prompts)[cakephp/chronos

A simple API extension for DateTime.

1.4k47.7M121](/packages/cakephp-chronos)

PHPackages © 2026

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