PHPackages                             makise-co/http - 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. makise-co/http

ActiveLibrary[Framework](/categories/framework)

makise-co/http
==============

Makise-Co HTTP server

v2.0.0-beta2(5y ago)0181MITPHPPHP ^7.4|^8.0

Since Dec 5Pushed 5y ago1 watchersCompare

[ Source](https://github.com/makise-co/http)[ Packagist](https://packagist.org/packages/makise-co/http)[ RSS](/packages/makise-co-http/feed)WikiDiscussions main Synced today

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

Makise-Co HTTP Server
=====================

[](#makise-co-http-server)

Makise-Co Swoole HTTP Server implementation

Installation
------------

[](#installation)

- Register service provider - `MakiseCo\Http\HttpServiceProvider`
- Register commands (look at [src/Commands](src/Commands))
- Minimal required configuration [config](config)
- Routes declaration [routes](routes)

Example configuration
---------------------

[](#example-configuration)

```
// config/http.php

use function MakiseCo\Env\env;

return [
    'host' => env('HTTP_HOST', '127.0.0.1'),
    'port' => (int)env('HTTP_PORT', 10228),

    'options' => [
        'worker_num' => (int)env('HTTP_WORKER_NUM', fn() => \swoole_cpu_num()),
        'reactor_num' => (int)env('HTTP_REACTOR_NUM', fn() => \swoole_cpu_num()),
    ],

    'routes' => [
        __DIR__ . '/../routes/api.php',
    ],

    // global middleware list
    'middleware' => [

    ],

    // list of services that should be initialized before a worker starts processing requests
    // and which should be stopped before a worker exits
    // empty list means - all services should be initialized
    // [null] means - services shouldn't be initialized
    'services' => [

    ],
];
```

Available commands
------------------

[](#available-commands)

- `routes:dump` shows information about application routes
- `http:start` starts HTTP server

Testing the application
-----------------------

[](#testing-the-application)

This component provides a set of useful tools to test application without running HTTP server.

- [MakesHttpRequests](src/Testing/MakesHttpRequests.php) trait (Laravel-like trait for your TestCases to invoke app routes)

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity45

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

Every ~2 days

Total

2

Last Release

1979d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/41348018d9b5a065cd3f4ae969e40f8a50b8e14317723847f609704e790c49e8?d=identicon)[codercms](/maintainers/codercms)

---

Top Contributors

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

---

Tags

httpframeworkmicroserverswoolecoroutinemakise

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Type Coverage Yes

### Embed Badge

![Health badge](/badges/makise-co-http/health.svg)

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

###  Alternatives

[cakephp/cakephp

The CakePHP framework

8.8k18.5M1.6k](/packages/cakephp-cakephp)[shopware/platform

The Shopware e-commerce core

3.3k1.5M3](/packages/shopware-platform)[mix/mix

PHP CLI mode development framework

1.9k1.2k](/packages/mix-mix)[igniphp/framework

Swoole, PSR-7, PSR-15 modular micro anti-framework.

2651.0k1](/packages/igniphp-framework)[yiisoft/yii-middleware

Yii Middleware

21151.3k1](/packages/yiisoft-yii-middleware)[luoxiaojun/sw-fw-less

Swoole Http Server without framework

165.3k](/packages/luoxiaojun-sw-fw-less)

PHPackages © 2026

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