Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 718 Bytes

README.md

File metadata and controls

34 lines (22 loc) · 718 Bytes

shakahl/laravel-reactphp

Integration of ReactPHP Server for Laravel 5.3 and Lumen 5.3.

Installation

  • Install via composer
composer require shakahl/laravel-reactphp
  • After installing, add provider on config/app.php on your project.
// app.php

    'providers' => [
        ...

        'LaravelReactPHP\Providers\ReactCommandProvider',
    ],

Run the server

php artisan react-serve --host=localhost --port=8080

Credits

This library is forked from Saoneth/laravel-reactphp.