PHP Package: laravel/telescope

Laravel Telescope is a powerful debugging assistant for the Laravel framework, providing insight into the requests coming into your application, exceptions, log entries, database queries, queued jobs, mail, notifications, cache operations, scheduled tasks, variable dumps, and more.

Current Version: 5.5.1
Last Updated: 2025-03-12
PHP Requirement: >=7.1
Dependencies: laravel/framework, symfony/console, symfony/var-dumper, guzzlehttp/guzzle, filp/whoops
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

Laravel Telescope is an elegant debug assistant for the Laravel framework, designed to provide in-depth insights into the requests made to your application. It helps in debugging exceptions, monitoring log entries, analyzing database queries, tracking queued jobs, inspecting mail and notifications, managing cache operations, monitoring scheduled tasks, viewing variable dumps, and much more. With its user-friendly interface and powerful features, Laravel Telescope is a must-have tool for every Laravel developer.

🔗 View on GitHub

Download Latest Version: 5.5.1

Download Download v5.5.1

Code Integration Example

Make sure to include the correct namespace and class paths for proper usage.

<?php

// Example from PHPlibraries.com
require_once 'libs/laravel/telescope/5.5.1/autoload.php';

use Laravel\Telescope\Telescope;
use Laravel\Telescope\Entry;
use Laravel\Telescope\Watchers\RequestWatcher;
use Laravel\Telescope\Watchers\ExceptionWatcher;
use Laravel\Telescope\Watchers\DumpWatcher;
use Psr\Log\LoggerInterface;


$obj = new Laravel\Telescope\Telescope();
echo "✅ Example created successfully.";

?>

We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.