PHPackages                             yangusik/laravel-spawn - 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. yangusik/laravel-spawn

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

yangusik/laravel-spawn
======================

Laravel adapter for PHP TrueAsync — async HTTP server with coroutine-per-request isolation

v0.1.0(1mo ago)120MITPHPPHP ^8.6

Since Mar 28Pushed 1mo agoCompare

[ Source](https://github.com/YanGusik/laravel-spawn)[ Packagist](https://packagist.org/packages/yangusik/laravel-spawn)[ RSS](/packages/yangusik-laravel-spawn/feed)WikiDiscussions master Synced 1mo ago

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

[![Logo Laravel Spawn](/logo.svg)](/logo.svg)

Laravel adapter for [PHP TrueAsync](https://github.com/true-async) — a PHP fork with a native coroutine scheduler and async I/O. Think Laravel Octane, but instead of Swoole or RoadRunner the runtime is TrueAsync.

**One worker. Many requests. Zero threads.**Each HTTP request runs in its own coroutine with isolated state — no shared memory, no leaks between requests.

---

How it works
------------

[](#how-it-works)

- Each request = a separate coroutine with its own `Scope`
- Request-scoped services (`auth`, `session`, `cookie`) are isolated via `coroutine_context()`
- PDO Pool transparently gives each coroutine its own database connection and returns it when the coroutine ends
- No container cloning — isolation is handled at the coroutine level, not by copying the entire app

---

Requirements
------------

[](#requirements)

- PHP TrueAsync fork 8.6+
- Laravel 12+
- For FrankenPHP mode: `trueasync/php-true-async:latest-frankenphp` Docker image

---

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

[](#installation)

```
composer require yangusik/laravel-spawn
```

**Via git repository:**

```
"repositories": [
    {
        "type": "vcs",
        "url": "https://github.com/yangusik/laravel-spawn"
    }
],
"require": {
    "yangusik/laravel-spawn": "dev-master"
}
```

**Via local path:**

```
"repositories": [
    {
        "type": "path",
        "url": "../laravel-true-async"
    }
],
"require": {
    "yangusik/laravel-spawn": "*"
}
```

Then run `composer update`.

The service provider is auto-discovered by Laravel.

Publish the config:

```
php artisan vendor:publish --tag=async-config
```

---

Servers
-------

[](#servers)

### Dev server

[](#dev-server)

Simple TCP socket server for local development. Analogous to `php artisan serve`.

```
php artisan async:serve --host=0.0.0.0 --port=8080
```

### FrankenPHP

[](#frankenphp)

Production-ready adapter using [FrankenPHP](https://frankenphp.dev) in async worker mode. Requires the `trueasync/php-true-async:latest-frankenphp` Docker image.

```
php artisan async:franken --host=0.0.0.0 --port=8080 --workers=1 --buffer=1
```

---

Docker quick start
------------------

[](#docker-quick-start)

### Dev server (no FrankenPHP required)

[](#dev-server-no-frankenphp-required)

```
services:
  app:
    image: trueasync/php-true-async:latest
    working_dir: /app
    command: php artisan async:serve --host=0.0.0.0 --port=8080
    ports:
      - "8080:8080"
    volumes:
      - .:/app
    environment:
      APP_ENV: local
      DB_CONNECTION: pgsql
      DB_HOST: db
      DB_PORT: 5432
      DB_DATABASE: laravel
      DB_USERNAME: laravel
      DB_PASSWORD: secret
```

### FrankenPHP

[](#frankenphp-1)

```
services:
  app:
    image: trueasync/php-true-async:latest-frankenphp
    working_dir: /app
    command: php artisan async:franken --host=0.0.0.0 --port=8080 --workers=1 --buffer=1
    ports:
      - "8080:8080"
    volumes:
      - .:/app
    environment:
      APP_ENV: local
      DB_CONNECTION: pgsql
      DB_HOST: db
      DB_PORT: 5432
      DB_DATABASE: laravel
      DB_USERNAME: laravel
      DB_PASSWORD: secret
```

---

Configuration
-------------

[](#configuration)

`config/async.php`:

```
return [
    'db_pool' => [
        'enabled'              => env('ASYNC_DB_POOL_ENABLED', true),
        'min'                  => env('ASYNC_DB_POOL_MIN', 2),
        'max'                  => env('ASYNC_DB_POOL_MAX', 10),
        'healthcheck_interval' => env('ASYNC_DB_POOL_HEALTHCHECK', 30),
    ],
];
```

---

Benchmarks
----------

[](#benchmarks)

### Laravel — TrueAsync vs Swoole Octane (4 workers, real DB workload)

[](#laravel--trueasync-vs-swoole-octane-4-workers-real-db-workload)

Endpoint: 5 real SQL queries per request. PostgreSQL 16. WSL2. k6 at 1,000 req/s for 30s.

MetricSwoole OctaneTrueAsyncDifferenceThroughput206 req/s**632 req/s****3.1x**Avg latency4,300ms**850ms**5x fasterMedian latency4,820ms**51ms****94x faster**p95 latency5,020ms**288ms**17x fasterSwoole blocks one worker per DB query. TrueAsync yields the worker to the scheduler while waiting — a single worker handles hundreds of concurrent I/O operations.

Full benchmark: [ta\_benchmark](https://github.com/YanGusik/ta_benchmark)

### Raw PHP — TrueAsync vs Swoole (no framework, no I/O)

[](#raw-php--trueasync-vs-swoole-no-framework-no-io)

On pure CPU-bound workloads both servers cap at the same throughput (~10k req/s). With optimal Swoole config (ZTS, 16 reactor threads) Swoole is ~1.6x faster on P95 latency due to FrankenPHP's Go↔PHP boundary overhead (futex synchronization). On I/O-bound workloads this overhead is negligible.

---

Sessions
--------

[](#sessions)

### Database sessions (built-in fix)

[](#database-sessions-built-in-fix)

The package automatically replaces Laravel's `DatabaseSessionHandler` with an async-safe version that uses `upsert` instead of `INSERT + catch + UPDATE`.

In a standard async server the HTTP response is sent *before* `kernel->terminate()` writes the session. If the client immediately sends the next request with the same cookie, two coroutines can race to INSERT the same session ID — causing duplicate-key warnings in the stock handler. The upsert is atomic, so this race is impossible regardless of concurrency.

No configuration needed. Works transparently when `SESSION_DRIVER=database`.

### Redis sessions (recommended for production)

[](#redis-sessions-recommended-for-production)

For high-concurrency workloads Redis sessions have lower overhead than database sessions and avoid any persistence race entirely:

```
SESSION_DRIVER=redis
REDIS_HOST=127.0.0.1
```

---

License
-------

[](#license)

MIT

###  Health Score

38

—

LowBetter than 85% of packages

Maintenance91

Actively maintained with recent releases

Popularity7

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 59.2% 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

46d ago

### Community

Maintainers

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

---

Top Contributors

[![EdmondDantes](https://avatars.githubusercontent.com/u/1571649?v=4)](https://github.com/EdmondDantes "EdmondDantes (29 commits)")[![YanGusik](https://avatars.githubusercontent.com/u/28189620?v=4)](https://github.com/YanGusik "YanGusik (20 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/yangusik-laravel-spawn/health.svg)

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

###  Alternatives

[binaryk/laravel-restify

Laravel REST API helpers

651399.1k](/packages/binaryk-laravel-restify)[namu/wirechat

A Laravel Livewire messaging app for teams with private chats and group conversations.

54324.5k](/packages/namu-wirechat)[lomkit/laravel-rest-api

A package to build quick and robust rest api for the Laravel framework.

59152.2k](/packages/lomkit-laravel-rest-api)[wirechat/wirechat

A Laravel Livewire messaging app for teams with private chats and group conversations.

5434.7k](/packages/wirechat-wirechat)[api-platform/laravel

API Platform support for Laravel

59126.4k6](/packages/api-platform-laravel)[georgeboot/laravel-echo-api-gateway

Use Laravel Echo with API Gateway Websockets

10435.5k](/packages/georgeboot-laravel-echo-api-gateway)

PHPackages © 2026

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