runtime/roadrunner-symfony-nyholm

Roadrunner runtime for with nyholm/psr7

Fund package maintenance!
nyholm

Installs: 75 246

Dependents: 0

Suggesters: 0

Security: 0

Stars: 55

Watchers: 4

Forks: 7

0.3.1 2024-01-05 14:33 UTC

This package is auto-updated.

Last update: 2024-05-05 15:16:48 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']);
};