dl-commons / dlc-category
A simple category module for Zend Framework 2 based applications.
dev-master
2013-06-05 08:28 UTC
Requires
- php: >=5.3.3
- dl-commons/dlc-doctrine: dev-master
- doctrine2-extensions/doctrine2-nestedset: dev-master
- zendframework/zendframework: >2.1.3
This package is auto-updated.
Last update: 2024-11-29 04:49:01 UTC
README
A simple category module for Zend Framework 2 based applications.
This module is currently under heavy development.
Introduction
Comming soon...
Requirements
- DlcBase
- DlcDoctrine
- [Doctrine2 NestedSet] (https://github.com/blt04/doctrine2-nestedset)
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...
Post installation
-
Enabling it in your
application.config.php
file.<?php return array( 'modules' => array( // ... 'DlcBase', 'DlcDoctrine', 'DlcCategory', ), // ... );