2017-25 © Pedro Peláez
 

library app-db

ZF2 BoilerApp Database module

image

zf2-boiler-app/app-db

ZF2 BoilerApp Database module

  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

ZF2 BoilerApp "Database" module

Build Status Latest Stable Version Total Downloads Code coverage, (*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

  1. Clone this project into your ./vendor/ directory.

With composer

  1. Add this project in your composer.json:, (*4)

    "require": {
        "zf2-boiler-app/app-db": "1.0.*"
    }
    
  2. Now tell composer to download ZF2 BoilerApp "Database" module by running the command:, (*5)

    $ php composer.phar update
    

Post installation

  1. Enabling BoilerAppDb and Doctrine modules in your application.config.php file., (*6)

    return array(
        'modules' => array(
            // ...
            'DoctrineModule',
            'DoctrineORMModule',
            'BoilerAppDb',
        ),
        // ...
    );
    
  2. 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
  • Email
  • Md5 hash
  • Enum

The Versions

07/10 2013

dev-master

9999999-dev

ZF2 BoilerApp Database module

  Sources   Download

MIT

The Requires

 

The Development Requires

database doctrine zend framework 2 zf2 boiler-app