Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 663 Bytes

01_Installation.md

File metadata and controls

34 lines (24 loc) · 663 Bytes

Installation of the Studio Ui Bundle

:::info

This bundle is only supported on Pimcore Core Framework 11.

:::

Bundle Installation

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

  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