updg / roadrunner-laravel
Installs: 16 165
Dependents: 0
Suggesters: 1
Security: 0
Stars: 43
Watchers: 4
Forks: 4
Open Issues: 3
Requires
- spiral/roadrunner: ^1.3
- symfony/psr-http-message-bridge: ^1.1
Suggests
- laravel/framework: Can work with Laravel 4 and Laravel 5
- laravel/lumen: Can work with Lumen 4 and Lumen 5
This package is auto-updated.
Last update: 2024-11-15 00:09:25 UTC
README
In order to Laravel and Lumen work properly with RoadRunner you have to use this library. Without it Laravel not reseting some components and can end up with bugs.
Installation
Require this library using composer
composer req updg/roadrunner-laravel
Create psr-worker.php file and add this content to it
<?php require __DIR__ . "/vendor/autoload.php"; $bridge = new \updg\roadrunner\laravel\Bridge(); $bridge->start();
That's it! Now just run RoadRunner server.