dl-commons / dlc-diagramm
A simple digramm module for Zend Framework 2 based applications.
dev-master
2013-04-25 19:24 UTC
Requires
- php: >=5.3.3
- dl-commons/dlc-base: dev-master
- zendframework/zendframework: >2.1.3
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
- Install the DlcBase ZF2 module
by cloning it into
./vendor/
. - Clone this project into your
./vendor/
directory.
With composer
-
Add this project and DlcDiagramm in your composer.json:
"require": { "dl-commons/dlc-diagramm": "dev-master" }
-
Now tell composer to download DlcDiagramm by running the command:
$ php composer.phar update
Post installation
-
Enabling it in your
application.config.php
file.<?php return array( 'modules' => array( // ... 'DlcBase', 'DlcDiagramm', ), // ... );