Chainlink ZF2 Module
Introduction
This module provides structure and code wrapping around Symbid\Chainlink exposing it to Zend Framework 2., (*1)
Requirements
Please see the composer.json file., (*2)
Installation
Run the following composer command:, (*3)
$ composer require "klever/chainlink-zf2-module:dev-master"
Alternately, manually add the following to your composer.json, in the require section:, (*4)
"require": {
"klever/chainlink-zf2-module": "dev-master"
}
And then run composer update to ensure the module is installed., (*5)
Finally, add the module name to your project's config/application.config.php under the modules
key:, (*6)
return array(
/* ... */
'modules' => array(
/* ... */
'Klever\ChainlinkModule',
),
/* ... */
);
User configuration example:
array(
'context_manager' => array(
'contexts' => array(
'MyContext' => array(
'handlers' => array(
'MyHandler1',
'MyHandler2',
'MyHandler3',
)
),
),
),
)