Skip to main content
Version: 2026.2

Installation

Requirements

  • PHP 8.4 or 8.5
  • Pimcore 2026.1 or later in the 2026 release line (constraint ^2026.1), Professional or Enterprise Edition
  • pimcore/studio-ui-bundle and pimcore/studio-backend-bundle, same constraint (^2026.1)

Install

composer require pimcore/tinymce-bundle

Composer pulls in the editor itself through the tinymce/tinymce dependency. The bundle declares ^7.9.3 || ^8.7.0, so Composer resolves the major version. To pin one, require it explicitly in your project:

composer require tinymce/tinymce:^8

Enable the bundle in config/bundles.php:

use Pimcore\Bundle\TinymceBundle\PimcoreTinymceBundle;
// ...

return [
// ...
PimcoreTinymceBundle::class => ['all' => true],
// ...
];

Install the bundle:

bin/console pimcore:bundle:install PimcoreTinymceBundle

For toolbar options and global defaults, see Configuration. If you are replacing Quill, see Migration from Quill.