Skip to main content
Version: 2024.3

Installation of the Copilot Showcase Bundle

info

This bundle is only supported on Pimcore Core Framework 11.

Bundle Installation

To install the Copilot Showcase Bundle, follow the three steps below:

  1. Install the required dependencies:
composer require pimcore/copilot-showcase-bundle
  1. Make sure the bundle is enabled in the config/bundles.php file. The following lines should be added:
use Pimcore\Bundle\CopilotShowcaseBundle\PimcoreCopilotShowcaseBundle;
// ...
return [
// ...
PimcoreCopilotShowcaseBundle::class => ['all' => true],
// ...
];
  1. Install the bundle:
bin/console pimcore:bundle:install PimcoreCopilotShowcaseBundle