🐘 PHP

Error tracking for Error tracking for PHP

Laravel exception handler integration, global error capture, and full stack traces. Install with Composer, configure in seconds.

Report in your exception handler

Add Wevitos to your Laravel exception handler and every unhandled exception is captured with full stack trace, request data, and authenticated user context.

  • Laravel exception handler integration
  • Full stack traces with file paths
  • Request and session context
  • Authenticated user info
  • PHP 8.1+ supported
Handler.php
use Wevitos\Wevitos;

Wevitos::init([
  'api_key' => 'wvt_...',
  'environment' => 'production',
]);

// In Handler.php
public function report(Throwable $e)
{
  Wevitos::capture($e);
  parent::report($e);
}

Start tracking PHP errors

composer require wevitos/wevitos-php