dl-commons / dlc-category
A simple category module for Zend Framework 2 based applications.
Installs: 7
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/dl-commons/dlc-category
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: 2025-10-29 01:56:36 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.phpfile.<?php return array( 'modules' => array( // ... 'DlcBase', 'DlcDoctrine', 'DlcCategory', ), // ... );