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
- Install the required dependencies:
composer require pimcore/copilot-showcase-bundle
- Enable the bundle in
config/bundles.php:
use Pimcore\Bundle\CopilotShowcaseBundle\PimcoreCopilotShowcaseBundle;
// ...
return [
// ...
PimcoreCopilotShowcaseBundle::class => ['all' => true],
// ...
];
- 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