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