2017 © Pedro Peláez
 

library buggyman-module

image

buggymanhq/buggyman-module

  • Wednesday, September 25, 2013
  • by ftdebugger
  • Repository
  • 1 Watchers
  • 0 Stars
  • 726 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 9 Versions
  • 0 % Grown

The README.md

Buggyman module for Zend Framework 2

INSTALL

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

{
    "require": {
        "buggymanhq/buggyman-module": "1.*"
    }
}

USAGE

Add BuggymanModule to your config/application.config.php to enable module., (*2)

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,
    )
);

The Versions