Skip to content

Files

Latest commit

e617496 · Mar 28, 2025

History

History
34 lines (25 loc) · 945 Bytes

01_Installation.md

File metadata and controls

34 lines (25 loc) · 945 Bytes

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