dl-commons/dlc-diagramm

A simple digramm module for Zend Framework 2 based applications.

dev-master 2013-04-25 19:24 UTC

This package is auto-updated.

Last update: 2024-08-29 03:35:20 UTC


README

A simple digramm module for Zend Framework 2 based applications.

This module is currently under heavy development.

Introduction

Comming soon...

Requirements

Installation

Main Setup

By cloning project

  1. Install the DlcBase ZF2 module by cloning it into ./vendor/.
  2. Clone this project into your ./vendor/ directory.

With composer

  1. Add this project and DlcDiagramm in your composer.json:

    "require": {
        "dl-commons/dlc-diagramm": "dev-master"
    }
  2. Now tell composer to download DlcDiagramm by running the command:

    $ php composer.phar update
    

Post installation

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

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