There were changes in CKEditorBundle - they were with Ivory namespace which is not maintained anymore. Now it is FOSCKEditorBundle. But after update, Easyadmin crashes with the following error:
Could not load type "Ivory\CKEditorBundle\Form\Type\CKEditorType": class does not exist.
Could you please update it? Here is an article how to migrate it easily.
I had the same problem.
We just need to do:
composer require friendsofsymfony/ckeditor-bundle
Use FOS\CKEditorBundle\Form\Type\CKEditorType as type instead of ckeditor in the easy_admin config.
For example:
- { property: 'body', type: 'FOS\CKEditorBundle\Form\Type\CKEditorType' }
fos_ck_editor instead of ivory_ck_editor in config
Most helpful comment
I had the same problem.
We just need to do:
composer require friendsofsymfony/ckeditor-bundleUse
FOS\CKEditorBundle\Form\Type\CKEditorTypeas type instead ofckeditorin theeasy_adminconfig.For example:
- { property: 'body', type: 'FOS\CKEditorBundle\Form\Type\CKEditorType' }fos_ck_editorinstead ofivory_ck_editorin config