buggymanhq / buggyman-module
v1.0.7
2013-09-25 16:00 UTC
Requires
This package is not auto-updated.
Last update: 2024-11-04 15:45:57 UTC
README
INSTALL
The recommended way to install is through composer.
{ "require": { "buggymanhq/buggyman-module": "1.*" } }
USAGE
Add BuggymanModule
to your config/application.config.php
to enable module.
buggyman.global.php
<?php return array( 'buggyman' => array( // is enabled 'enabled' => true, // api token 'token' => 'HERE_PASTE_YOUR_TOKEN', // public token for js handler 'public_token' => 'HERE YOUR PUBLIC TOKEN' ) );
buggyman.local.php
<?php return array( 'buggyman' => array( 'enabled' => false, ) );