boundstate/yii2-atlas

Atlas integration for Yii2

Installs: 62

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 3

Forks: 0

Open Issues: 0

Type:yii2-extension

v0.0.2 2015-05-25 17:02 UTC

This package is auto-updated.

Last update: 2024-04-08 23:29:51 UTC


README

Extension for the Yii2 framework that submits Yii errors to the Atlas API.

Requirements

This extension requires PHP cURL support.

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist boundstate/yii2-atlas "*"

or add

"boundstate/yii2-atlas": "*"

to the require section of your composer.json file.

Usage

Setup the components in your config:

'atlas' => [
    'class' => 'boundstate\atlas\Atlas',
    'baseUrl' => 'https://atlas.boundstatesoftware.com',
    'appId' => 'your-app-id',
],

'errorHandler' => [
    'class' => 'boundstate\atlas\ErrorHandler',
],