:::info
This bundle is only supported on Pimcore Core Framework 11.
:::
To install the Studio Ui Bundle, follow the three steps below:
- Install the required dependencies:
composer require pimcore/studio-ui-bundle
- Make sure the bundle is enabled in the
config/bundles.php
file. The following lines should be added:
use Pimcore\Bundle\StudioUiBundle\PimcoreStudioUiBundle;
// ...
return [
// ...
PimcoreStudioUiBundle::class => ['all' => true],
// ...
];
- Install the bundle:
bin/console pimcore:bundle:install PimcoreStudioUiBundle