bernardosecades/laravel-debug-container

Maintainers

Package info

github.com/bernardosecades/laravel-debug-container

Type:laravel-library

pkg:composer/bernardosecades/laravel-debug-container

Statistics

Installs: 2 249

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 1

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

This package is not auto-updated.

Last update: 2026-03-15 11:28:41 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