bernardosecades / laravel-debug-container
Installs: 2 249
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 1
Type:laravel-library
Requires
- php: >=5.6
- illuminate/console: ^5.4
Requires (Dev)
- laravel/lumen-framework: 5.5.*
- phpunit/phpunit: ~7.0
This package is not auto-updated.
Last update: 2024-10-27 05:04:28 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
Tests
./vendor/bin/phpunit