klever / chainlink-zf2-module
There is no license information available for the latest version (0.1.0) of this package.
ZF2 module wrapper for Symbid/chainlink
0.1.0
2015-03-02 18:07 UTC
Requires
- symbid/chainlink: 0.2.*
- zendframework/zend-servicemanager: ~2.3
Requires (Dev)
- phpunit/phpunit: ~4.5
This package is not auto-updated.
Last update: 2024-10-26 17:50:48 UTC
README
Introduction
This module provides structure and code wrapping around Symbid\Chainlink exposing it to Zend Framework 2.
Requirements
Please see the composer.json file.
Installation
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', ), /* ... */ );
User configuration example:
array( 'context_manager' => array( 'contexts' => array( 'MyContext' => array( 'handlers' => array( 'MyHandler1', 'MyHandler2', 'MyHandler3', ) ), ), ), )