Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
Generated on May 25, 2024 via composer

laravel/telescope v4.16.4

An elegant debug assistant for the Laravel framework.
Package summary
Share
2
issues
2
high severity
license
2
4
licenses
57
MIT
4
BSD-3-Clause
2
(BSD-3-Clause OR GPL-2.0-only OR GPL-3.0-only)
1
Apache-2.0
Package created
23 Oct 2018
Version published
25 Sep 2023
Maintainers
1
Total deps
64
Direct deps
2
License
MIT

Issues

2

2 high severity issues

high
Recommendation: Validate that the license expression complies with your license policy
via: laravel/framework@v10.48.11
Recommendation: Validate that the license expression complies with your license policy
via: laravel/framework@v10.48.11
Collapse
Expand

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
57 Packages, Including:
brick/math@0.12.1
carbonphp/carbon-doctrine-types@2.1.0
dflydev/dot-access-data@v3.0.2
doctrine/inflector@2.0.10
doctrine/lexer@3.0.1
dragonmantank/cron-expression@v3.3.3
egulias/email-validator@4.0.2
fruitcake/php-cors@v1.3.0
graham-campbell/result-type@v1.1.2
guzzlehttp/uri-template@v1.0.3
laravel/framework@v10.48.11
laravel/prompts@v0.1.22
laravel/serializable-closure@v1.3.3
laravel/telescope@v4.16.4
league/flysystem@3.28.0
league/flysystem-local@3.28.0
league/mime-type-detection@1.15.0
monolog/monolog@3.6.0
nesbot/carbon@2.72.3
nunomaduro/termwind@v1.15.1
psr/clock@1.0.0
psr/container@2.0.2
psr/event-dispatcher@1.0.0
psr/log@3.0.0
psr/simple-cache@3.0.0
ramsey/collection@2.0.0
ramsey/uuid@4.7.6
symfony/console@v6.4.7
symfony/css-selector@v7.0.7
symfony/deprecation-contracts@v3.5.0
symfony/error-handler@v6.4.7
symfony/event-dispatcher@v7.0.7
symfony/event-dispatcher-contracts@v3.5.0
symfony/finder@v6.4.7
symfony/http-foundation@v6.4.7
symfony/http-kernel@v6.4.7
symfony/mailer@v6.4.7
symfony/mime@v6.4.7
symfony/polyfill-ctype@v1.29.0
symfony/polyfill-intl-grapheme@v1.29.0
symfony/polyfill-intl-idn@v1.29.0
symfony/polyfill-intl-normalizer@v1.29.0
symfony/polyfill-mbstring@v1.29.0
symfony/polyfill-php72@v1.29.0
symfony/polyfill-php80@v1.29.0
symfony/polyfill-php83@v1.29.0
symfony/polyfill-uuid@v1.29.0
symfony/process@v6.4.7
symfony/routing@v6.4.7
symfony/service-contracts@v3.5.0

BSD 3-Clause "New" or "Revised" License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
place-warranty
Cannot
use-trademark
hold-liable
Must
include-copyright
include-license
4 Packages, Including:
league/commonmark@2.4.2
league/config@v1.2.0
tijsverkoyen/css-to-inline-styles@v2.2.7
vlucas/phpdotenv@v5.6.0

(BSD-3-Clause OR GPL-2.0-only OR GPL-3.0-only)

Expression
2 Packages, Including:
nette/schema@v1.3.0
nette/utils@v4.0.4

Apache License 2.0

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
use-patent-claims
place-warranty
Cannot
hold-liable
use-trademark
Must
include-copyright
include-license
state-changes
include-notice
1 Packages, Including:
phpoption/phpoption@1.9.2
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

2
All Dependencies CSV
โ“˜ This is a list of laravel/telescope 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
laravel/frameworkv10.48.11-MIT
prod
2
symfony/var-dumperv6.4.7-MIT
prod dev

Visualizations

Frequently Asked Questions

What does laravel/telescope do?

Laravel/Telescope is a refined debug assistant specifically designed for the Laravel framework. It provides users with profound insights into the requests coming into their application. It's an ideal tool for monitoring exceptions, log entries, database queries, queued jobs, mail, notifications, cache operations, scheduled tasks, and variable dumps. It especially shines as a companion tool for local Laravel development environments, offering an in-depth look into your application's performance and behavior.

How do you use laravel/telescope?

To use Laravel/Telescope, you first need to install the package via Composer:

composer require laravel/telescope

After installing Telescope, publish its assets using the telescope:install Artisan command:

php artisan telescope:install

You may need to run migrations after installation:

php artisan migrate

Once installed, Telescope provides a dashboard available at your appโ€™s /telescope path. Access to this path is controlled by the viewTelescope Gate in your AuthServiceProvider.

Where are the laravel/telescope docs?

Laravel/Telescope's official documentation can be found on the Laravel website: https://laravel.com/docs/telescope. The documentation covers further details on installation, configuration, and usage of this comprehensive debug assistant for Laravel applications.