library dlc-category
A simple category module for Zend Framework 2 based applications.
dl-commons/dlc-category
A simple category module for Zend Framework 2 based applications.
- Wednesday, June 5, 2013
- by dlabas
- Repository
- 1 Watchers
- 0 Stars
- 7 Installations
- PHP
- 1 Dependents
- 0 Suggesters
- 0 Forks
- 0 Open issues
- 1 Versions
- 0 % Grown
DlcCategory
A simple category module for Zend Framework 2 based applications., (*1)
This module is currently under heavy development., (*2)
Introduction
Comming soon..., (*3)
Requirements
Installation
Main Setup
By cloning project
- Install the DlcBase and DlcDoctrine ZF2 modules
by cloning it into
./vendor/.
- Clone this project into your
./vendor/ directory.
- If not installed install [Doctrine2 NestedSet] (https://github.com/blt04/doctrine2-nestedset) module
by cloning it into
./vendor/. and adding autoloading for it. For more information see [Installing NestedSet for Doctrine2] (https://github.com/blt04/doctrine2-nestedset/blob/master/INSTALL.markdown).
With composer
Coming soon..., (*4)
Post installation
-
Enabling it in your application.config.phpfile., (*5)
```php
<?php
return array(
'modules' => array(
// ...
'DlcBase',
'DlcDoctrine',
'DlcCategory',
),
// ...
);, (*6)