neilime / zf2-ckeditor-bundle
Zend Framework 2 module for easy integration of the CKEditor WYSIWYG
Installs: 10
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 4
Forks: 7
Open Issues: 1
pkg:composer/neilime/zf2-ckeditor-bundle
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.phpfile.<?php return array( 'modules' => array( // ... 'CKEditorBundle', ), // ... );