Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update WYSIWYG doc #34

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions StepByStep/WYSIWYG_EDITOR_IN_ANY_FORM.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
### Installing CKEditor

> You can follow [this official Symfony guide](https://symfony.com/doc/master/bundles/IvoryCKEditorBundle/index.html) or read the below basic step by step setup.
1. Require the bundle: `composer require egeloen/ckeditor-bundle`
1. Require the bundle: `composer require friendsofsymfony/ckeditor-bundle`
2. Add CKEditor bundle to your `AppKernel.php` file:

```php
Expand All @@ -14,7 +14,7 @@ class AppKernel extends Kernel
public function registerBundles()
{
$bundles = array(
new Ivory\CKEditorBundle\IvoryCKEditorBundle(),
new FOS\CKEditorBundle\FOSCKEditorBundle(),
// ...
);

Expand Down Expand Up @@ -49,7 +49,7 @@ declare(strict_types=1);

namespace AppBundle\Form\Extension;

use Ivory\CKEditorBundle\Form\Type\CKEditorType;
use FOS\CKEditorBundle\Form\Type\CKEditorType;
use Sylius\Bundle\ProductBundle\Form\Type\ProductTranslationType;
use Symfony\Component\Form\AbstractTypeExtension;
use Symfony\Component\Form\FormBuilderInterface;
Expand Down