https://github.com/steevanb/symfony-container-introspection
Introspect Symfony container to show instantiated services, public/private, lazy, parameters etc.
https://github.com/steevanb/symfony-container-introspection
bundle container php symfony
Last synced: about 1 year ago
JSON representation
Introspect Symfony container to show instantiated services, public/private, lazy, parameters etc.
- Host: GitHub
- URL: https://github.com/steevanb/symfony-container-introspection
- Owner: steevanb
- Created: 2018-06-05T11:43:52.000Z (about 8 years ago)
- Default Branch: 3.0
- Last Pushed: 2024-08-28T15:46:19.000Z (almost 2 years ago)
- Last Synced: 2024-09-29T20:57:56.861Z (over 1 year ago)
- Topics: bundle, container, php, symfony
- Language: PHP
- Homepage:
- Size: 153 KB
- Stars: 10
- Watchers: 4
- Forks: 2
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.md
Awesome Lists containing this project
README
[](https://github.com/steevanb/symfony-container-introspection/tree/3.1.0)
[](https://php.net)

symfony-container-introspection
===============================
It helps you to know which services are instanciated, removed, public and list container parameters.
You have access to Container cache statistics: files count, code lines count and cache size.
With Symfony, a new profiler tab will appear:


[Changelog](changelog.md)
If you want to use it with `symfony/dependency-injection ^3.4`, use [steevanb/symfony-container-introspection ^1.0](https://github.com/steevanb/symfony-container-introspection/tree/1.0.x).
If you want to use it with `symfony/dependency-injection ^4.0`, use [steevanb/symfony-container-introspection ^1.1](https://github.com/steevanb/symfony-container-introspection/tree/1.1.x).
Installation
============
```bash
composer require --dev steevanb/symfony-container-introspection ^3.1
```
If you use Symfony (and not just `symfony/dependency-injection`), you can add `ContainerIntrospectionBundle` to your Kernel:
```php
# config/bundles.php
['dev' => true]
];
```