PHPackages                             luwake/php-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. [Framework](/categories/framework)
4. /
5. luwake/php-express

ActiveLibrary[Framework](/categories/framework)

luwake/php-express
==================

A pipeline framework use express.js api for php

v1.x-dev(8y ago)3121MITPHP

Since Oct 14Pushed 4y ago2 watchersCompare

[ Source](https://github.com/luwake/php-express)[ Packagist](https://packagist.org/packages/luwake/php-express)[ RSS](/packages/luwake-php-express/feed)WikiDiscussions master Synced 2w ago

READMEChangelogDependencies (6)Versions (2)Used By (0)

php-express
===========

[](#php-express)

A pipeline framework use express.js api and reactphp framework for php

example
=======

[](#example)

```
$app = Express::Application();

$app->get('/', function(Request $req, Response $res){
    return $res->send('Hello World');
});

$app->listen(8080);
```

example 2 sub router
====================

[](#example-2-sub-router)

```
$app = Express::Application();

$post = Express::Router();

$post->get('/:id', function(Request $req, Response $res){
    return $res->send('Hello Post:' . $req->params['id']);
});

$post->get('/', function(Request $req, Response $res){
    return $res->send('Hello Post');
});

$app->use('/post', $post);

$app->get('/', function(Request $req, Response $res){
    return $res->send('Hello World');
});

$app->listen(8080);
```

example 3 middleware use
========================

[](#example-3-middleware-use)

```
$app = Express::Application();

$app->use(Express::static(__DIR__));

$api = Express::Router('/api');

$api->use(Express::json());

$api->get('/', function(Request $req, Response $res){
    return [
        'code' => 0,
        'msg' => '',
        'data' => [],
    ];
});

$app->use($api);

$app->get('/', function(Request $req, Response $res){
    return $res->send('Hello World');
});

$app->listen(8080);
```

todo
====

[](#todo)

some method need complete

log
===

[](#log)

###  Health Score

24

—

LowBetter than 31% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity49

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

3182d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/c346fb8001450f1e356f9c66ef756acc74aef7c205169cd8df2af6f07eb1aa73?d=identicon)[lubiao39699492](/maintainers/lubiao39699492)

---

Top Contributors

[![luwake](https://avatars.githubusercontent.com/u/11704776?v=4)](https://github.com/luwake "luwake (65 commits)")

---

Tags

expressjsframeworkmiddlewarepipelinemiddlewareframeworkpipelineexpressjs

### Embed Badge

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

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

###  Alternatives

[laravel/framework

The Laravel Framework.

34.8k543.8M19.5k](/packages/laravel-framework)[ccxt/ccxt

A cryptocurrency trading API with more than 100 exchanges in JavaScript / TypeScript / Python / C# / PHP / Go

43.2k341.0k1](/packages/ccxt-ccxt)[tempest/framework

The PHP framework that gets out of your way.

2.2k31.1k12](/packages/tempest-framework)[mako/framework

Mako Framework

250171.9k30](/packages/mako-framework)[hyperf/hyperf-skeleton

A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.

303189.9k](/packages/hyperf-hyperf-skeleton)[doppar/framework

The Doppar Framework

4011.2k14](/packages/doppar-framework)

PHPackages © 2026

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