Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/webchemistry/rollbar
Rollbar integration for Nette framework
https://github.com/webchemistry/rollbar
Last synced: about 1 month ago
JSON representation
Rollbar integration for Nette framework
- Host: GitHub
- URL: https://github.com/webchemistry/rollbar
- Owner: WebChemistry
- Created: 2016-01-23T20:57:36.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-04-05T09:21:43.000Z (over 6 years ago)
- Last Synced: 2024-11-14T18:54:27.977Z (about 1 month ago)
- Language: PHP
- Homepage:
- Size: 4.88 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rollbar for Nette
## Instalation
```
composer require webchemistry/rollbar
```Neon:
```yaml
extensions:
rollbar: WebChemistry\RollBar\DI\Extension
rollbar:
accessToken: xxx
```## First use
```php
class BasePresenter extends Presenter {
/** @var WebChemistry\RollBar\RollBar @inject */
public $rollbar;public function startup() {
parent::startup();
$this->rollbar->sendTest(); // After first use remove
}
}
```## Config
```yaml
rollback:
accessToken: xxx
logging: no
enable: %productionMode%
config: # For Rollback::init
included_errno: -1
```