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

This package is auto-updated.

Last update: 2024-08-29 04:14:20 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

  1. Install the DlcBase, DlcCategory, DlcDiagramm and DlcDoctrine ZF2 modules by cloning it into ./vendor/.
  2. Clone this project into your ./vendor/ directory.

With composer

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

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

    $ php composer.phar update
    

Post installation

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

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