dl-commons / dlc-use-case
A simple module for Zend Framework 2 based applications for getting an overview of your use cases.
dev-master
2013-06-05 08:59 UTC
Requires
- php: >=5.3.3
- dl-commons/dlc-base: dev-master
- dl-commons/dlc-category: dev-master
- dl-commons/dlc-diagramm: dev-master
- dl-commons/dlc-doctrine: dev-master
- zendframework/zendframework: >2.1.3
This package is auto-updated.
Last update: 2024-11-29 04:46:52 UTC
README
A simple module for Zend Framework 2 based applications for getting an overview of your use cases.
This module is currently under heavy development.
Introduction
Comming soon...
Requirements
Installation
Main Setup
By cloning project
- Install the DlcBase, DlcCategory, DlcDiagramm and DlcDoctrine ZF2 modules
by cloning it into
./vendor/
. - Clone this project into your
./vendor/
directory.
With composer
-
Add this project and DlcUseCase in your composer.json:
"require": { "dl-commons/dlc-use-case": "dev-master" }
-
Now tell composer to download DlcUseCase by running the command:
$ php composer.phar update
Post installation
-
Enabling it in your
application.config.php
file.<?php return array( 'modules' => array( // ... 'DlcBase', 'DlcDoctrine', 'DlcDiagramm', 'DlcCategory', 'DlcUseCase', ), // ... );