Skip to content

Releases: Checkend/checkend-php

v1.0.0

15 Jan 16:12

Choose a tag to compare

Checkend PHP SDK v1.0.0

Initial release of the PHP SDK for Checkend error monitoring.

Features

  • Core error reporting with Checkend::notify()
  • Async and sync notification modes
  • Context, user, and request data capture
  • Sensitive data filtering - automatic scrubbing of passwords, tokens, etc.
  • Exception ignore patterns - skip common framework exceptions
  • Proxy and SSL configuration support
  • Data control flags - sendRequestData, sendUserData, etc.

Integrations

  • Generic PHP error/exception handlers
  • PSR-15 Middleware
  • Laravel Service Provider
  • Laravel Exception Handler
  • Laravel Queue job failure reporting

Installation

composer require checkend/checkend

Quick Start

use Checkend\Checkend;

Checkend::configure(['api_key' => 'your-api-key']);

try {
    doSomething();
} catch (Exception $e) {
    Checkend::notify($e);
}

Requirements

  • PHP 8.1+
  • No external dependencies