t4web/base

ZF2 Module. A set of generic (abstract) classes which are commonly used across multiple modules.

1.0.1 2015-10-23 09:43 UTC

This package is auto-updated.

Last update: 2024-03-26 16:38:01 UTC


README

Master: Build Status codecov.io Scrutinizer Code Quality SensioLabsInsight Dependency Status

ZF2 Module. A set of generic (abstract) classes which are commonly used across multiple modules.

Contents

Requirements

Installation

Add this project in your composer.json:

"require": {
    "t4web/base": "~1.0.0"
}

Now tell composer to download Base by running the command:

$ php composer.phar update

Enabling it in your application.config.phpfile.

<?php
return array(
    'modules' => array(
        // ...
        'T4webBase',
    ),
    // ...
);