Skip to content
This repository has been archived by the owner on Mar 2, 2023. It is now read-only.

KEIII/react-silex

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Integrates Silex with ReactPHP.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published