creative-web-solution/cws-quilljs-bundle

Add Quill rich text editor to symfony.

dev-main 2024-09-30 15:53 UTC

This package is auto-updated.

Last update: 2025-03-01 00:42:08 UTC


README

Configuration

composer require creative-web-solution/cws-quilljs-bundle

Add this line on bundles.php:

Cws\Bundle\QuillJsBundle\CwsQuillJsBundle::class => ['all' => true],

Create cws_quill_js.yaml into config/packages:

cws_quill_js:
    enabled: true
    toolbar:
        - ['bold', 'italic', 'underline', 'strike']
        - [{'list': 'ordered'}, {'list': 'bullet'}]
        - ['link']
        - ['clean']

It's done.