neilime / zf2-ckeditor-bundle
This package is abandoned and no longer maintained.
No replacement package was suggested.
Zend Framework 2 module for easy integration of the CKEditor WYSIWYG
dev-master
2013-02-04 18:47 UTC
Requires
- php: >=5.3.3
- ckeditor/ckeditor-releases: dev-stable/standard
- phpunit/phpunit: 3.7.*
- zendframework/zendframework: 2.*
Suggests
- neilime/zf2-assets-bundle: Bundling & caching CKEditor assets
This package is auto-updated.
Last update: 2020-08-23 19:22:01 UTC
README
Created by Neilime
Introduction
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 :)
Requirements
- Zend Framework 2 (latest master)
Installation
Main Setup
By cloning project
- Install the .
- Clone this project into your
./vendor/
directory.
With composer
-
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
Post installation
-
Enabling it in your
application.config.php
file.<?php return array( 'modules' => array( // ... 'CKEditorBundle', ), // ... );