Download the PHP package pinfirestudios/craft3-bugsnag without Composer
On this page you can find all versions of the php package pinfirestudios/craft3-bugsnag. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download pinfirestudios/craft3-bugsnag
More information about pinfirestudios/craft3-bugsnag
Files in pinfirestudios/craft3-bugsnag
Package craft3-bugsnag
Short Description Enables errors to be sent to Bugsnag (www.bugsnag.com)
License MIT
Informations about the package craft3-bugsnag
Bugsnag plugin for Craft CMS 3.x
Enables errors to be sent to Bugsnag
Requirements
This plugin requires Craft CMS 3.0.0-beta.23 or later.
Installation
To install the plugin, follow these instructions.
-
Open your terminal and go to your Craft project:
-
Then tell Composer to load the plugin:
-
In the Control Panel, go to Settings → Plugins and click the “Install” button for craft3-bugsnag.
- If you want to be able to capture early initialization errors, you need to add this plugin to your project's bootstrap configuration. To do this, in config/app.php, add:
This will load the Bugsnag component and logging portion early in the project initialization, giving you the greatest visibility into errors. If you don't enable this, Bugsnag will be initialized when plugins are set up, later in the loading process.
Configuring craft3-bugsnag
You will need to provide your API key and optionally the release stage via the settings page or via config/env files. The recommended way however is to copy src/config.php to /APP_ROOT/config/craft3-bugsnag.php, then either edit it directly, or add BUGSNAG_API_KEY to your .env file. For the release stage, if not set directly, it will default to the CRAFT_ENVIRONMENT variable.
Using craft3-bugsnag
If things crash and this is enabled, visit your Bugsnag dashboard to see why.
Getting JavaScript errors
If you would like to use Bugsnag's JavaScript on your site, you'll need to install bower-asset/bugsnag:
-
Add the following to your project's composer.json
-
Require bower-asset/bugsnag
- Once you have it installed, add BugsnagAsset to your TWIG file (or controller if working inside a plugin)
In TWIG:
{% do view.registerAssetBundle("\\pinfirestudios\\yii2bugsnag\\BugsnagAsset") %}
In a plugin asset:
class AppAsset extends AssetBundle
{
public $depends = [
'pinfirestudios\yii2bugsnag\BugsnagAsset',
];
}
If you need to use version 2 of Bugsnag's JavaScript, you can specify the version in your configuration. See Customizing Asset Bundles.