PHPackages                             hallex/express - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. hallex/express

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

hallex/express
==============

Import route control into your project

v1.0.0(6y ago)14[1 PRs](https://github.com/HallexCosta/express-php/pulls)propertyPHPPHP ^7.4CI failing

Since Apr 27Pushed 3mo ago1 watchersCompare

[ Source](https://github.com/HallexCosta/express-php)[ Packagist](https://packagist.org/packages/hallex/express)[ Docs](http://hallex.zapto.org)[ RSS](/packages/hallex-express/feed)WikiDiscussions master Synced 6d ago

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

Express
=======

[](#express)

### "*Import system route in your project with express*"

[](#import-system-route-in-your-project-with-express)

[![octocat-hallex](https://user-images.githubusercontent.com/55293671/77607982-b7a2ca80-6efa-11ea-9c59-d82fba2e34d6.png)](https://user-images.githubusercontent.com/55293671/77607982-b7a2ca80-6efa-11ea-9c59-d82fba2e34d6.png)

Attention
---------

[](#attention)

**Maintenance**

- Request
- Response
- Headers

How to Use?
-----------

[](#how-to-use)

#### Required

[](#required)

- composer
- PHP ^7.4

### Guide

[](#guide)

- [Install](#install)
- [Usage](#usage)

[](#install)

Install
-------

[](#install)

> **composer require hallex/express ^1.0**

[](#usage)

Usage
-----

[](#usage)

> **Public folder content is an example of how to use Express correctly**

```
require_once __DIR__ . '/vendor/autoload.php';

use Express\Application\Express;
use Express\Core\HTTP\{
	Request,
	Response
};

$app = new Express;
$router = $app->router();

/**
 * Build route: get
 */
$router->get('/', function(Request $request, Response $response) {
	return 'Home Route :D (GET)';
});
/**
 * Build route: post
 */
$router->post('/', function(Request $request, Response $response) {
	return 'Home Route :D (POST)';
});
/**
 * Build route: put
 */
$router->put('/', function(Request $request, Response $response) {
	return 'Home Route :D (PUT)';
});
/**
 * Build route: delete
 */
$router->delete('/', function(Request $request, Response $response) {
	return 'Home Route :D (DELETE)';
});
/**
 * Run all routes automatized
 */
```

Author
======

[](#author)

[![](https://avatars2.githubusercontent.com/u/55293671?s=200&v=4)
@HallexCosta](https://github.com/HallexCosta)

###  Health Score

34

—

LowBetter than 77% of packages

Maintenance53

Moderate activity, may be stable

Popularity5

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity60

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

Unknown

Total

1

Last Release

2211d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/5e0bcb52742d8cf00add6d64effbfb37dfebb5cd3493f423be92e650be3de15a?d=identicon)[HallexCosta](/maintainers/HallexCosta)

---

Top Contributors

[![HallexCosta](https://avatars.githubusercontent.com/u/55293671?v=4)](https://github.com/HallexCosta "HallexCosta (14 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

PHPackages © 2026

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