Error tracking and logging from PHP to Rollbar
This library detects errors and exceptions in your application and sends them to Rollbar for alerts, reporting, and analysis.
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_itemvalue 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.
Major releases of this library support major versions of PHP, as follows:
masterbranch.
2.xrelease.
1.xrelease.
To obtain a release, download an archive from the Releases page or use composer:
# for PHP 8 compatibility $ composer require rollbar/rollbar-php:dev-masterfor 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.
Rollbar-PHP is free software released under the MIT License. See LICENSE for details.