runtime/roadrunner-symfony-nyholm

Roadrunner runtime for with nyholm/psr7

Maintainers

👁 Nyholm

Package info

github.com/php-runtime/roadrunner-symfony-nyholm

pkg:composer/runtime/roadrunner-symfony-nyholm

Fund package maintenance!

nyholm

Statistics

Installs: 125 314

Dependents: 0

Suggesters: 0

Stars: 64

1.0.0 2025-12-18 07:34 UTC

Requires

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 20bc4c15de0802318830bc1504b33a539ba38a19

  • Tobias Nyholm <tobias.nyholm.woop@gmail.com>

This package is auto-updated.

Last update: 2026-06-18 08:52:12 UTC


README

A runtime for RoadRunner.

If you are new to the Symfony Runtime component, read more in the main readme.

Installation

composer require runtime/roadrunner-symfony-nyholm

Usage

Define the environment variable APP_RUNTIME for your application.

// .env
APP_RUNTIME=Runtime\RoadRunnerSymfonyNyholm\Runtime
// .rr.yaml
server:
 ...
 env:
 APP_RUNTIME: Runtime\RoadRunnerSymfonyNyholm\Runtime
// public/index.php

use App\Kernel;

require_once dirname(__DIR__).'/vendor/autoload_runtime.php';

return function (array $context) {
 return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};