zf-commons / zfc-base
A set of genetic (abstract) classes which are commonly used across multiple modules.
Installs: 1 016 484
Dependents: 61
Suggesters: 3
Security: 0
Stars: 147
Watchers: 38
Forks: 98
Open Issues: 15
Requires
- php: >=5.3.3
- zendframework/zend-db: ~2.1
- zendframework/zend-eventmanager: ~2.1
- zendframework/zend-loader: ~2.1
- zendframework/zend-modulemanager: ~2.1
- zendframework/zend-mvc: ~2.1
- zendframework/zend-servicemanager: ~2.1
- zendframework/zend-stdlib: ~2.1
This package is not auto-updated.
Last update: 2024-10-23 11:56:49 UTC
README
Version 0.0.1 Created by Evan Coury and the ZF-Commons team
Introduction
ZfcBase provides a suite of common classes used across several ZF2 modules. You probably don't need to install this module unless either A) you are installing a module that depends on ZfcBase, or B) you are building a module that depends on ZfcBase.
Requirements
- Zend Framework 2
Installation
Simply clone this project into your ./vendor/
directory and enable it in your
./config/application.config.php
file.
Provided Classes
ZfcBase\Mapper\AbstractDbMapper
- An abstract mapper for Zend\Db that makes using hydrators and custom entities very simple.ZfcBase\Form\ProvidesEventsForm
- Extends Zend\Form and provides the functionality ofZfcBase\EventManager\EventProvider
(basically it's a crutch since we can't use traits yet).ZfcBase\EventManager\EventProvider
- Abstract class that gives extending classes an event manager and related methods.