buggymanhq / buggyman-module
v1.0.7
2013-09-25 16:00 UTC
Requires
This package is not auto-updated.
Last update: 2024-09-23 15:10:24 UTC
README
安装
推荐安装方式是通过 composer。
{ "require": { "buggymanhq/buggyman-module": "1.*" } }
用法
将 BuggymanModule
添加到您的 config/application.config.php
中以启用模块。
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, ) );