boundstate / yii2-atlas
Atlas integration for Yii2
Installs: 65
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
Type:yii2-extension
This package is auto-updated.
Last update: 2024-11-09 00:47:58 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',
],