PHPackages                             mklyuev/php-pipeline-router - 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. [HTTP &amp; Networking](/categories/http)
4. /
5. mklyuev/php-pipeline-router

ActiveLibrary[HTTP &amp; Networking](/categories/http)

mklyuev/php-pipeline-router
===========================

Router with pipelines for php projects

v1.0.0(6y ago)25PHPCI failing

Since Jan 30Pushed 6y ago1 watchersCompare

[ Source](https://github.com/mklyuev/php-pipeline-router)[ Packagist](https://packagist.org/packages/mklyuev/php-pipeline-router)[ RSS](/packages/mklyuev-php-pipeline-router/feed)WikiDiscussions master Synced today

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

Router with pipelines for php projects. Working with PHP-DI &amp; HttpFoundation from Symfony.

Install
-------

[](#install)

To install with composer:

```
composer require mklyuev/php-pipeline-router
```

Requires PHP 7.1 or newer.

#### Example

[](#example)

```
$router = new Router();

$router->get('users/{id}', function (Request $request, Response $response) {
    $response->setContent(json_encode([
        'user' => $request->get('id')
    ]));

    $response->send();
});

$router->post('users', 'App\Controllers\UsersController@create', [
    CheckForAdminRights::class,
    ValidatePostUserData::class
]);

$router->get('users', 'App\Controllers\UsersController@getList');

$request = Request::createFromGlobals();

$router->handle($request);
```

#### Custom DI container

[](#custom-di-container)

```
$container = (new Container);
$container->set('Doctrine\ORM\EntityManagerInterface', $entityManager);

$router->setContainer($container);
```

###  Health Score

25

—

LowBetter than 35% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity57

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

2347d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/7948830?v=4)[Mikhail Klyuev](/maintainers/mklyuev)[@mklyuev](https://github.com/mklyuev)

---

Top Contributors

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

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/mklyuev-php-pipeline-router/health.svg)

```
[![Health](https://phpackages.com/badges/mklyuev-php-pipeline-router/health.svg)](https://phpackages.com/packages/mklyuev-php-pipeline-router)
```

###  Alternatives

[symfony/http-kernel

Provides a structured process for converting a Request into a Response

8.1k869.4M8.8k](/packages/symfony-http-kernel)[api-platform/core

Build a fully-featured hypermedia or GraphQL API in minutes!

2.6k51.2M339](/packages/api-platform-core)[nelmio/api-doc-bundle

Generates documentation for your REST API from attributes

2.4k67.4M263](/packages/nelmio-api-doc-bundle)[easycorp/easyadmin-bundle

Admin generator for Symfony applications

4.3k17.9M388](/packages/easycorp-easyadmin-bundle)[symfony/security-bundle

Provides a tight integration of the Security component into the Symfony full-stack framework

2.5k185.6M2.4k](/packages/symfony-security-bundle)[matomo/matomo

Matomo is the leading Free/Libre open analytics platform

21.7k38.9k](/packages/matomo-matomo)

PHPackages © 2026

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