2017 © Pedro Peláez
 

library react-zf2

Module for integration Zend Framework 2 and React PHP

image

ftdebugger/react-zf2

Module for integration Zend Framework 2 and React PHP

  • Monday, September 29, 2014
  • by ftdebugger
  • Repository
  • 7 Watchers
  • 21 Stars
  • 217 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 6 Forks
  • 1 Open issues
  • 1 Versions
  • 1 % Grown

The README.md

Zend Framework 2 and React PHP

Build StatusDependency Status, (*1)

Integration of zend framework 2 and react php, (*2)

Install

The recommended way to install is through composer., (*3)

{
    "require": {
        "ftdebugger/react-zf2": "dev-master"
    }
}

Usage

Append ReactZF module to config/application.config.php, then type in console, (*4)

# start default server at http://localhost:1337/
php -f public/index.php react start

Open http://localhost:1337/., (*5)

Configuration

Add configuration to your config/autoload/*, (*6)

return array(
    'ReactZF' => array(
        'servers' => array(
            // You can rewrite default server options
            'default' => array(
                'port' => 1337,
                'host' => '127.0.0.1'
            )

            // Or specify your own
            'some-server-name-you-like' => array(
                'port' => 1338,

                // optional, react use 127.0.0.1 as default
                'host' => '192.168.0.117'
            ),
            ..
        )
    )
);

The Versions

29/09 2014

dev-master

9999999-dev

Module for integration Zend Framework 2 and React PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

by Evgeny Shpilevsky

zend react