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/checkendQuick 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