Skip to main content
Version: Next

Installation and Configuration

Bundle Installation

To install Pimcore Statistics Explorer, follow the three steps below:

  1. Install the required dependencies:
composer require pimcore/statistics-explorer
  1. 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],
// ...
];
  1. 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: