Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vincentchalnot/doctrinedebugbundle
Tracing Doctrine queries in Symfony profiler
https://github.com/vincentchalnot/doctrinedebugbundle
Last synced: 4 days ago
JSON representation
Tracing Doctrine queries in Symfony profiler
- Host: GitHub
- URL: https://github.com/vincentchalnot/doctrinedebugbundle
- Owner: VincentChalnot
- License: mit
- Created: 2017-11-07T16:07:48.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-03-19T08:43:11.000Z (8 months ago)
- Last Synced: 2024-09-24T18:06:47.382Z (about 2 months ago)
- Language: HTML
- Size: 93.8 KB
- Stars: 20
- Watchers: 5
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Sidus/DoctrineDebugBundle Documentation
==================================## Introduction
This bundle adds a stack trace to each doctrine query in the profiler.
![Example](Resources/documentation/exemple.png)
## Installation
### Require the bundle with composer:
````bash
$ composer require sidus/doctrine-debug-bundle "~1.0"
````### Add the bundle to AppKernel.php
```php
getEnvironment(), ['dev', 'test'], true)) {
// ...if ('dev' === $this->getEnvironment()) {
$bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle();
$bundles[] = new Symfony\Bundle\WebServerBundle\WebServerBundle();// HERE!
$bundles[] = new Sidus\DoctrineDebugBundle\SidusDoctrineDebugBundle();
}
}return $bundles;
}
// ...
}
```## Changelog
### v1.0.2
Doesn't require xdebug to be installed anymore.### v1.0.1
Fixing compatibility with Web Profiler 4