creative-web-solution / cws-quilljs-bundle
Add Quill rich text editor to symfony.
Installs: 20
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=8.3
- symfony/asset: ^6.4
- symfony/config: ^6.4
- symfony/dependency-injection: ^6.4
- symfony/form: ^6.4
- symfony/http-kernel: ^6.4
- symfony/twig-bundle: ^6.4
- symfony/yaml: ^6.4
Requires (Dev)
- phpunit/phpunit: ^9.1
- symfony/phpunit-bridge: ^6.4
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.