/react-silex

Integrates Silex with ReactPHP.

Primary LanguagePHPMIT LicenseMIT

React Silex

Integrates Silex with React.

Run

$ cd example && ./console server:run -p 8080

How to use

<?php

use KEIII\ReactSilex\ReactSilexServiceProvider;
use Silex\Application;

$app = new Application();
$app->get('/', function () {
    return 'Hello from reactor!';
});
$app->register(new ReactSilexServiceProvider());
$app['react.console']->run();

Similar