Installation
Requirements
- PHP 8.5
- Pimcore 2026.1 or later (Professional or Enterprise Edition)
- Compatible with Studio UI bundle 0.12.9 or later
Install
composer require pimcore/tinymce-bundle
Note: This bundle does not pin the TinyMCE editor version. From your project root, require the
tinymce/tinymcemajor version you intend to use, for example:composer require tinymce/tinymce:^8Use
^7instead if you need the TinyMCE 7.
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.