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:
- Install the required dependencies:
composer require pimcore/copilot-showcase-bundle
- 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],
// ...
];
- Install the bundle:
bin/console pimcore:bundle:install PimcoreCopilotShowcaseBundle