PHPackages                             nexion/nexion - 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. nexion/nexion

ActiveProject[Framework](/categories/framework)

nexion/nexion
=============

The Phpify Application Skeleton

v1.0.0(1mo ago)01↓88.9%MITPHPPHP &gt;=8.0

Since May 27Pushed 3w agoCompare

[ Source](https://github.com/abdullahadeeel/nexion)[ Packagist](https://packagist.org/packages/nexion/nexion)[ RSS](/packages/nexion-nexion/feed)WikiDiscussions master Synced 1w ago

READMEChangelog (1)Dependencies (1)Versions (3)Used By (0)

nexion Framework
================

[](#nexion-framework)

A full-fledged organized PHP framework inspired by Laravel.

Features
--------

[](#features)

- **PSR-4 Autoloading**: Custom implementation for clean namespace management.
- **Routing**: Support for GET/POST, dynamic parameters (`/user/{id}`), and closures.
- **Middleware**: Intercept requests before they reach your controllers.
- **ORM**: Laravel-style Active Record implementation (`all()`, `find()`, `save()`).
- **Template Engine**: Regex-based engine with `@if`, `@foreach`, `{{ }}` and layout inheritance (`@extends`, `@yield`).
- **MVC Architecture**: Clearly separated Core and App logic.

Directory Structure
-------------------

[](#directory-structure)

- `app/`: Your application logic (Controllers, Models, Middleware, Views).
- `core/`: The framework's engine.
- `public/`: Public entry point.
- `routes/`: Route definitions.
- `storage/`: Cache and logs.

Getting Started
---------------

[](#getting-started)

1. Point your web server to the `public/` directory.
2. Configure your database in `public/index.php`.
3. Define your routes in `routes/web.php`.
4. Create controllers in `app/Controllers/`.

Example Usage
-------------

[](#example-usage)

### Routing

[](#routing)

```
$router->get('/user/{id}', [UserController::class, 'show'])->middleware(AuthMiddleware::class);
```

### Controller

[](#controller)

```
class UserController extends BaseController {
    public function show($request, $id) {
        $user = User::find($id);
        return $this->render('user.profile', compact('user'));
    }
}
```

### Model

[](#model)

```
class User extends Model {
    protected string $table = 'users';
}
```

### View (Blade-like)

[](#view-blade-like)

```
@extends('layout.main')
@section('content')
    Hello, {{ $user->name }}
@endsection
```

###  Health Score

36

—

LowBetter than 79% of packages

Maintenance92

Actively maintained with recent releases

Popularity1

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity40

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

52d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/d17fefc8b093650f75b75e927a1a496cbb172c84cf78f6bd106a15b9543fd915?d=identicon)[Abdullah Adeel](/maintainers/Abdullah%20Adeel)

---

Top Contributors

[![abdullahadeeel](https://avatars.githubusercontent.com/u/231168888?v=4)](https://github.com/abdullahadeeel "abdullahadeeel (12 commits)")

### Embed Badge

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

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

###  Alternatives

[nineinchnick/edatatables

Grid widget for the Yii Framework, wrapper for the DataTables jQuery plugin

173.2k](/packages/nineinchnick-edatatables)[alizharb/laravel-modular

A professional, framework-agnostic modular architecture for Laravel 11+. Features zero-config autoloading, 29+ Artisan command overrides, and seamless Vite integration.

211.6k9](/packages/alizharb-laravel-modular)[link-cloud/fast-hyperf

LinkCloud Fast Hyperf

241.2k1](/packages/link-cloud-fast-hyperf)

PHPackages © 2026

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