Skip to content
This repository has been archived by the owner on Jul 10, 2020. It is now read-only.

Latest commit

 

History

History
63 lines (42 loc) · 1.22 KB

README.md

File metadata and controls

63 lines (42 loc) · 1.22 KB

CKEditorBundle

Build Status

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

Installation

Main Setup

By cloning project

  1. Install the .
  2. Clone this project into your ./vendor/ directory.

With composer

  1. Add this project in your composer.json:

    "require": {
        "neilime/zf2-ckeditor-bundle": "dev-master"
    }
  2. Now tell composer to download CKEditorBundle by running the command:

    $ php composer.phar update

Post installation

  1. Enabling it in your application.config.phpfile.

    <?php
    return array(
        'modules' => array(
            // ...
            'CKEditorBundle',
        ),
        // ...
    );

How to use CKEditorBundle

Simple configuration example