Download the PHP package errorvault/laravel without Composer

On this page you can find all versions of the php package errorvault/laravel. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel

ErrorVault Laravel Package

Send PHP exceptions to your ErrorVault dashboard for centralized error monitoring with automatic health monitoring and reliability features.

Installation

Configuration

Publish the config file:

Add these environment variables to your .env file:

Usage

Once configured, exceptions are automatically reported to ErrorVault. You can also manually report errors:

Verify Connection

Get Statistics

Reliability Features (v1.3.0+)

Automatic Heartbeat

The package automatically sends a lightweight ping every 5 minutes to keep your site's last_seen_at updated in the portal. This prevents your site from appearing offline.

Connection Failure Tracking

All API connection failures are automatically logged with:

Artisan Commands

Test Connection

Tests connectivity to the ErrorVault portal and displays detailed results.

View Diagnostics

Displays comprehensive diagnostics including:

Clear Failure Logs

Clears all connection failure logs.

Send Health Report

Manually trigger a health report to the portal.

Programmatic Access

Health Monitoring

Enable comprehensive server health monitoring:

Health monitoring tracks:

Reports are automatically sent every 5 minutes (configurable) and alerts are triggered when thresholds are exceeded.

Configuration Options

Basic Options

Option Description Default
enabled Enable/disable reporting false
api_endpoint Your ErrorVault API endpoint ''
api_token Your site's API token ''
send_immediately Send errors immediately vs batch true
ignore Exception classes to ignore See config
ignore_patterns Message patterns to ignore []
severity_map Map exceptions to severities []

Health Monitoring Options

Option Description Default
health_monitoring.enabled Enable health monitoring false
health_monitoring.cpu_load_threshold CPU load alert threshold (%) 80
health_monitoring.memory_threshold Memory usage alert threshold (%) 80
health_monitoring.request_rate_threshold Request rate alert (req/min) 1000
health_monitoring.request_spike_multiplier Traffic spike multiplier 5
health_monitoring.alert_cooldown Alert cooldown (minutes) 15
health_monitoring.report_interval Report interval (minutes) 5
health_monitoring.disk_threshold Disk usage alert threshold (%) 90

Ignoring Exceptions

Add exceptions to the ignore array in config/errorvault.php:

Or use patterns to ignore by message content:

Scheduled Tasks

The package automatically registers the following scheduled tasks:

  1. Heartbeat (every 5 minutes) - Keeps site active in portal
  2. Health Report (configurable, default 5 minutes) - Sends health metrics

Ensure your Laravel scheduler is running:

Or use Laravel's queue worker in production.

Version History

License

MIT


All versions of laravel with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
illuminate/support Version ^10.0|^11.0|^12.0
guzzlehttp/guzzle Version ^7.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package errorvault/laravel contains the following files

Loading the files please wait ...