PHPackages                             eductool/quill-editor-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Templating &amp; Views](/categories/templating)
4. /
5. eductool/quill-editor-bundle

ActiveSymfony-bundle[Templating &amp; Views](/categories/templating)

eductool/quill-editor-bundle
============================

Symfony bundle providing a Quill.js form field.

v1.0.0(8mo ago)1221MITPHPPHP &gt;=8.1

Since Oct 5Pushed 8mo agoCompare

[ Source](https://github.com/eductool/quill-editor-bundle)[ Packagist](https://packagist.org/packages/eductool/quill-editor-bundle)[ RSS](/packages/eductool-quill-editor-bundle/feed)WikiDiscussions main Synced 3w ago

READMEChangelogDependencies (6)Versions (2)Used By (0)

Quill Editor Bundle
===================

[](#quill-editor-bundle)

A lightweight Symfony bundle that exposes the [Quill.js](https://quilljs.com/) rich text editor as a reusable form field.

Installation
------------

[](#installation)

```
composer require eductool/quill-editor-bundle
```

If you are not using Symfony Flex, register the bundle manually in `config/bundles.php`:

```
return [
    Eductool\QuillEditorBundle\QuillEditorBundle::class => ['all' => true],
];
```

Install the bundle assets so the helper script is available under `public/`:

```
php bin/console assets:install --symlink --relative
```

Configuration
-------------

[](#configuration)

The bundle works out of the box. You may customise the defaults in `config/packages/quill_editor.yaml`:

```
quill_editor:
    include_cdn: true
    cdn:
        version: '1.3.7'
        script: null # use bundled default when null
        stylesheets:
            snow: null
            bubble: null
    default_options:
        theme: snow
        placeholder: 'Compose an epic...'
        read_only: false
        height: 200
        auto_initialize: true
        modules:
            toolbar:
                - [bold, italic, underline, strike]
                - [blockquote, code-block]
```

- `include_cdn`: toggle automatic loading of Quill assets from jsDelivr. Set to `false` if you manage assets yourself.
- `modules`: merged with the bundle defaults, so you can tweak only the portions you need.
- `auto_initialize`: set to `false` to defer editor creation and initialise manually via JavaScript (`window.QuillEditorBundle.initialize('field_id')`).

Usage
-----

[](#usage)

The bundle automatically registers a Twig form theme. You can use the field type like any other Symfony field:

```
use Eductool\QuillEditorBundle\Form\QuillEditorType;
use Symfony\Component\Form\Extension\Core\Type\SubmitType;

$builder
    ->add('content', QuillEditorType::class, [
        'label' => 'Content',
        'placeholder' => 'Start writing...'
    ])
    ->add('save', SubmitType::class);
```

The submitted value is HTML. You may convert it to Delta format in your own code if required.

Manual Initialisation
---------------------

[](#manual-initialisation)

When `auto_initialize` is disabled, call the helper to create the editor once your own scripts are ready:

```
window.QuillEditorBundle.initialize('form_field_id').then((instance) => {
    // instance is the Quill editor
});
```

You can also retrieve an existing instance:

```
const quill = window.QuillEditorBundle.getInstance('form_field_id');
```

Browser Support
---------------

[](#browser-support)

The helper script relies on evergreen browser features (Promises, `Map`). For legacy support you should include appropriate polyfills before loading the field.

License
-------

[](#license)

Released under the MIT License.

###  Health Score

33

—

LowBetter than 72% of packages

Maintenance59

Moderate activity, may be stable

Popularity16

Limited adoption so far

Community2

Small or concentrated contributor base

Maturity44

Maturing project, gaining track record

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

262d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/3836ef5e0587a8cef024068071f394c4938c245134c85f7daf88a30299581383?d=identicon)[eductool](/maintainers/eductool)

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/eductool-quill-editor-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/eductool-quill-editor-bundle/health.svg)](https://phpackages.com/packages/eductool-quill-editor-bundle)
```

###  Alternatives

[easycorp/easyadmin-bundle

Admin generator for Symfony applications

4.3k17.5M373](/packages/easycorp-easyadmin-bundle)[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.5k5.8M712](/packages/sylius-sylius)[2lenet/crudit-bundle

The easy like Crud'it Bundle.

1615.6k12](/packages/2lenet-crudit-bundle)[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.4M196](/packages/sulu-sulu)[kimai/kimai

Kimai - Time Tracking

4.7k8.7k1](/packages/kimai-kimai)[prestashop/prestashop

PrestaShop is an Open Source e-commerce platform, committed to providing the best shopping cart experience for both merchants and customers.

9.1k16.8k](/packages/prestashop-prestashop)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
