Installation and Configuration
Bundle Installation
To install Pimcore Statistics Explorer, follow the three steps below:
- Install the required dependencies:
composer require pimcore/statistics-explorer
- Make sure the bundle is enabled in the
config/bundles.php
file. The following lines should be added:
return [
// ...
Pimcore\Bundle\StatisticsExplorerBundle\PimcoreStatisticsExplorerBundle::class => ['all' => true],
// ...
];
- Install the bundle:
bin/console pimcore:bundle:install PimcoreStatisticsExplorerBundle
Deployment hint
For deployments of applications with this bundle via deployment pipelines without actual database access, the Symfony cache warming process could fail as doctrine ORM tries to determine the database version on cache warm-up to build its cache. Therefore, it is recommended to configure the database server version in the default DBAL connection like this:
doctrine:
dbal:
default_connection: default
connections:
default:
...
server_version: mariadb-10.11.0
Next Steps
Now that the installation is complete, proceed with the next steps:
- Learn the core concepts in Basic Concepts.
- Explore integration options:
- Application Integration – Direct embedding into your application.
- Custom Report Integration – Integration with Pimcore’s Custom Reports.