LaravelPackages.net
Acme Inc.
Toggle sidebar
bernardosecades/laravel-debug-container

2.249
0
About bernardosecades/laravel-debug-container

bernardosecades/laravel-debug-container is a Laravel package. It currently has 0 GitHub stars and 2.249 downloads on Packagist. Install it with composer require bernardosecades/laravel-debug-container. Discover more Laravel packages by bernardosecades or browse all Laravel packages to compare alternatives.

Last updated

Debug Container - Laravel

You can find out what services are registered with the container using the console.

Show all services

php artisan debug:container

Install in your project

Run composer

composer require bernardosecades/laravel-debug-container

Add DebugContainerServiceProvider in bootstrap/app.php

Example:

if ( env('APP_ENV') === 'development' ) {
    $app->register(\BernardoSecades\Laravel\DebugContainer\DebugContainerServiceProvider::class);
}

Screenshots

php artisan debug:container

Command debug container

Tests

./vendor/bin/phpunit
Comments