Skip to main content
Version: 2026.2

Installation of the Copilot Showcase Bundle

The Copilot Showcase Bundle ships a collection of ready-to-use example actions for Pimcore Copilot. Install it to try these actions directly, or use them as a reference when building your own Copilot actions. See Included Actions for what is included.

info

This bundle requires the Pimcore Copilot bundle installed and set up first.

This is an enterprise bundle and requires a valid Pimcore enterprise subscription.

Bundle Installation

  1. Install the required dependencies:
composer require pimcore/copilot-showcase-bundle
  1. Enable the bundle in config/bundles.php:
use Pimcore\Bundle\CopilotShowcaseBundle\PimcoreCopilotShowcaseBundle;
// ...
return [
// ...
PimcoreCopilotShowcaseBundle::class => ['all' => true],
// ...
];
  1. Install the bundle:
bin/console pimcore:bundle:install PimcoreCopilotShowcaseBundle

PimcoreCopilotBundle is registered into the kernel automatically as a dependent bundle, so it needs no entry in config/bundles.php. It still needs its own install run, which creates its database tables and user permissions:

bin/console pimcore:bundle:install PimcoreCopilotBundle