All Projects → rollbar → Rollbar Php

rollbar / Rollbar Php

Licence: mit
Error tracking and logging from PHP to Rollbar

Projects that are alternatives of or similar to Rollbar Php

Bugsnag Ruby
Bugsnag error monitoring & reporting software for rails, sinatra, rack and ruby
Stars: ✭ 211 (-28.96%)
Mutual labels:  error-handling, error-monitoring, exceptions
Pyrollbar
Error tracking and logging from Python to Rollbar
Stars: ✭ 169 (-43.1%)
Mutual labels:  error-handling, error-monitoring, exceptions
Bugsnag React Native
Error monitoring and reporting tool for native exceptions and JS errors in React Native apps
Stars: ✭ 374 (+25.93%)
Mutual labels:  error-handling, error-monitoring, exceptions
bugsnag-java
Bugsnag error reporting for Java.
Stars: ✭ 51 (-82.83%)
Mutual labels:  error-monitoring, error-handling, exceptions
Bugsnag Android Ndk
DEPRECATED - this project now lives at bugsnag/bugsnag-android
Stars: ✭ 42 (-85.86%)
Mutual labels:  error-handling, error-monitoring, exceptions
Bugsnag Js
Javascript error handling tool for Bugsnag. Monitor and report JavaScript bugs & errors.
Stars: ✭ 625 (+110.44%)
Mutual labels:  error-handling, error-monitoring, exceptions
Bugsnag Php
Bugsnag error monitoring and crash reporting tool for PHP apps
Stars: ✭ 475 (+59.93%)
Mutual labels:  error-handling, error-monitoring, exceptions
Bugsnag Go
Automatic panic monitoring for Go and Go web frameworks, like negroni, gin, and revel
Stars: ✭ 155 (-47.81%)
Mutual labels:  error-handling, error-monitoring, exceptions
Rollbar Android
Rollbar for Android
Stars: ✭ 41 (-86.2%)
Mutual labels:  error-handling, error-monitoring, exceptions
Bugsnag Laravel
Bugsnag notifier for the Laravel PHP framework. Monitor and report Laravel errors.
Stars: ✭ 746 (+151.18%)
Mutual labels:  error-handling, error-monitoring, exceptions
Bugsnag Node
[DEPRECATED] Please upgrade to our Universal JS notifier "@bugsnag/js" • https://github.com/bugsnag/bugsnag-js
Stars: ✭ 48 (-83.84%)
Mutual labels:  error-handling, error-monitoring, exceptions
Bugsnag Cocoa
Bugsnag crash reporting for iOS, macOS and tvOS apps
Stars: ✭ 167 (-43.77%)
Mutual labels:  error-handling, error-monitoring, exceptions
Emperror
The Emperor takes care of all errors personally
Stars: ✭ 201 (-32.32%)
Mutual labels:  error-handling, error-monitoring
Exceptions4c
🐑 An exception handling framework for C
Stars: ✭ 189 (-36.36%)
Mutual labels:  error-handling, exceptions
periskop
Exception Monitoring Service
Stars: ✭ 128 (-56.9%)
Mutual labels:  error-monitoring, exceptions
Exceptionless
Exceptionless server and jobs
Stars: ✭ 2,107 (+609.43%)
Mutual labels:  error-handling, error-monitoring
Sneaker
An easy way to send emails whenever an exception occurs on server.
Stars: ✭ 223 (-24.92%)
Mutual labels:  error-handling, error-monitoring
TrackJS-Node
TrackJS Error Monitoring agent for NodeJS
Stars: ✭ 26 (-91.25%)
Mutual labels:  error-monitoring, error-handling
elmah.io
ELMAH error logger for sending errors to elmah.io.
Stars: ✭ 31 (-89.56%)
Mutual labels:  error-monitoring, error-handling
bugsnag-vue
[DEPRECATED] This package now lives within the monorepo for our Universal JS notifier "@bugsnag/js" • https://github.com/bugsnag/bugsnag-js
Stars: ✭ 26 (-91.25%)
Mutual labels:  error-monitoring, error-handling

Rollbar-PHP

Latest Version on Packagist Build Status Total Downloads

This library detects errors and exceptions in your application and sends them to Rollbar for alerts, reporting, and analysis.

Quickstart

If you've never used Rollbar before, sign up for a Rollbar account and follow the simple, three-step tour. In no time, you'll be capturing errors and exceptions thrown in your code.

If you already have a Rollbar account, log in to your Rollbar account. From the Settings > Project Access Token menu, click Create New Access Token. Copy the post_client_item value and paste it into the code below.

require 'vendor/autoload.php'; // composer require rollbar/rollbar:^2

\Rollbar\Rollbar::init(
  [ 'access_token' => '***', 'environment' => 'development' ]
);

For detailed usage instructions and configuration reference, refer to our PHP SDK docs.

Getting Help

Releases, Versions, and PHP Compatibility

Major releases of this library support major versions of PHP, as follows:

  • For PHP 8, choose the master branch.
  • For PHP 7, choose a 2.x release.
  • For PHP 5, choose a 1.x release.

To obtain a release, download an archive from the Releases page or use composer:

# for PHP 8 compatibility
$ composer require rollbar/rollbar-php:dev-master

# for PHP 7 compatibility
$ composer require rollbar/rollbar-php:^2

# for PHP 5 compatibility
$ composer require rollbar/rollbar-php:^1

Refer to CHANGELOG.md for a complete history.

License

Rollbar-PHP is free software released under the MIT License. See LICENSE for details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].