dl-commons / dlc-diagramm
A simple digramm module for Zend Framework 2 based applications.
Installs: 11
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/dl-commons/dlc-diagramm
Requires
- php: >=5.3.3
- dl-commons/dlc-base: dev-master
- zendframework/zendframework: >2.1.3
This package is auto-updated.
Last update: 2025-10-29 01:56:35 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.phpfile.<?php return array( 'modules' => array( // ... 'DlcBase', 'DlcDiagramm', ), // ... );