auredg / laminas-db-profiler
A Laminas module to profile db queries using Laminas\Db\Adapter\Profiler\Profiler and write them to Laminas\DeveloperTools toolbar.
Installs: 2 420
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 2
Open Issues: 0
Language:HTML
Requires
- php: >=7.3
- laminas/laminas-db: 2.*
- laminas/laminas-developer-tools: *
This package is not auto-updated.
Last update: 2025-03-23 00:46:20 UTC
README
A Laminas module to profile db queries using \Laminas\Db\Adapter\Profiler\Profiler
and write them to Laminas\DeveloperTools toolbar
Features
- profiling db queries
- support multiple db connections
Dependencies
- Laminas Db
- Laminas Developer Tools
Instalation
-
Add following line to your composer.json file
"auredg/laminas-db-profiler": "*"
-
run
composer update
-
Add module
LaminasDbProfiler
to your application.config.php -
Enable profiler for your Db Adapter or Adapters
'db' => array(
'driver' => 'Pdo_Mysql',
'database' => 'db',
'username' => 'username',
'password' => 'pass',
'profiler' => true, //this line enable db profiler
)
- Library uses
Laminas\Db\Adapter\Adapter
service key. If you are uses different key for your Db Adapter you must set it by configuration options.
Options
Configuration options are available in config/laminas-db-profiler.global.php.dist
file. If you want to change the default ones, copy it in your config/autoload
directory, remove the .dist
extension and edit it.
Options available :
- dbAdapterServiceManagerKey : List of all Db Adapter service manager keys which you want to profile. Laminas\Db\Adapter\Adapter is default