library dlc-use-case
A simple module for Zend Framework 2 based applications for getting an overview of your use cases.
dl-commons/dlc-use-case
A simple module for Zend Framework 2 based applications for getting an overview of your use cases.
- Wednesday, June 5, 2013
- by dlabas
- Repository
- 1 Watchers
- 0 Stars
- 9 Installations
- PHP
- 0 Dependents
- 0 Suggesters
- 0 Forks
- 0 Open issues
- 1 Versions
- 0 % Grown
DlcUseCase
A simple module for Zend Framework 2 based applications for getting an overview of your use cases., (*1)
This module is currently under heavy development., (*2)
Introduction
Comming soon..., (*3)
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:, (*4)
"require": {
"dl-commons/dlc-use-case": "dev-master"
}
-
Now tell composer to download DlcUseCase by running the command:, (*5)
```bash
$ php composer.phar update, (*6)
Post installation
-
Enabling it in your application.config.phpfile., (*7)
```php
<?php
return array(
'modules' => array(
// ...
'DlcBase',
'DlcDoctrine',
'DlcDiagramm',
'DlcCategory',
'DlcUseCase',
),
// ...
);, (*8)