bernardosecades/laravel-debug-container

dev-master 2018-03-24 11:59 UTC

This package is not auto-updated.

Last update: 2024-03-17 01:32:43 UTC


README

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