bernardosecades / laravel-debug-container

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

License:MIT License


Languages

Language:PHP 100.0%