Skip to main content
Version: Next

Installation of the Studio Ui Bundle

Bundle Installation

To install the Studio Ui Bundle, follow the three steps below:

  1. Make sure prerequisites are met:
  1. Install the required dependencies:
composer require pimcore/studio-ui-bundle
  1. 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],
// ...
];
  1. Install the bundle:
bin/console pimcore:bundle:install PimcoreStudioUiBundle