library app-db
ZF2 BoilerApp Database module
zf2-boiler-app/app-db
ZF2 BoilerApp Database module
- PHP
- 1 Dependents
- 0 Suggesters
- 0 Forks
- 0 Open issues
- 1 Versions
- 0 % Grown
ZF2 BoilerApp "Database" module
, (*1)
NOTE : This module is in heavy development, it's not usable yet.
If you want to contribute don't hesitate, I'll review any PR., (*2)
Introduction
ZF2 BoilerApp "Database" module is a Zend Framework 2 module that provides database core of ZF2 Boiler-App, (*3)
Requirements
Installation
Main Setup
By cloning project
- Clone this project into your
./vendor/
directory.
With composer
-
Add this project in your composer.json:, (*4)
"require": {
"zf2-boiler-app/app-db": "1.0.*"
}
-
Now tell composer to download ZF2 BoilerApp "Database" module by running the command:, (*5)
$ php composer.phar update
Post installation
-
Enabling BoilerAppDb and Doctrine modules in your application.config.php
file., (*6)
return array(
'modules' => array(
// ...
'DoctrineModule',
'DoctrineORMModule',
'BoilerAppDb',
),
// ...
);
-
Allowing Mysqli reconnexion in php.ini, (*7)
mysqli.reconnect = On
Features
Doctrine
Commons
- Repositories abstract factory
- Support entity's date of create and update
DBAL types
dev-master
9999999-dev
ZF2 BoilerApp Database module
Sources
Download
MIT
The Requires
The Development Requires
database
doctrine
zend framework 2
zf2 boiler-app