detailnet/dfw-normalization-module

This package is abandoned and no longer maintained. No replacement package was suggested.

Zend Framework Module for dfw-normalization

2.0.0 2020-04-03 09:26 UTC

This package is auto-updated.

Last update: 2021-05-31 13:14:55 UTC


README

Build Status Coverage Status Latest Stable Version Latest Unstable Version

Introduction

This module integrates the DETAIL Framework library for array/object (de-)normalization with Zend Framework.

Requirements

Zend Framework Skeleton Application (or compatible architecture)

Installation

Install the module through Composer using the following steps:

  1. cd my/project/directory

  2. Create a composer.json file with following contents (or update your existing file accordingly):

    {
        "require": {
            "detailnet/dfw-normalization-module": "^1.1"
        }
    }
  3. Install Composer via curl -s http://getcomposer.org/installer | php (on Windows, download the installer and execute it with PHP)

  4. Run php composer.phar self-update

  5. Run php composer.phar install

  6. Open configs/application.config.php and add following key to your modules:

    'Detail\Normalization',
  7. Copy vendor/detailnet/dfw-normalization-module/config/detail_normalization.local.php.dist into your application's config/autoload directory, rename it to detail_normalization.local.php and make the appropriate changes.