Created by Neilime
CKEditorBundle is a module for ZF2 for easy integration of the CKEditor WYSIWYG.
P.S. Sorry for my english. If You wish to help me with this project or correct my english description - You are welcome :)
- Zend Framework 2 (latest master)
- Install the .
- Clone this project into your
./vendor/
directory.
-
Add this project in your composer.json:
"require": { "neilime/zf2-ckeditor-bundle": "dev-master" }
-
Now tell composer to download CKEditorBundle by running the command:
$ php composer.phar update
-
Enabling it in your
application.config.php
file.<?php return array( 'modules' => array( // ... 'CKEditorBundle', ), // ... );