willhoffmann/domuserp-module

Zend Framework 3 Module that provides Domus ERP API functionality.

v1.0.0 2018-08-06 18:31 UTC

This package is auto-updated.

Last update: 2024-04-23 08:50:37 UTC


README

GitHub license Build Status Downloads

ZF3 Module to consume the DomusErp API.

This module uses the domuserp-php

Installation

The suggested installation method is via composer:

composer require willhoffmann/domuserp-module

Configure module

  • Copy /vendor/willhoffmann/domuserp-module/config/domuserp-module.local.php.dist into your global autoload folder, remove the dist extension so that Zend Framework picks it up

Or run copy command:

cp vendor/willhoffmann/domuserp-module/config/domuserp-module.local.php.dist config/autoload/domuserp-module.local.php

Enable module

Register as Zend Framework module inside your config/application.config.php file:

// config/application.config.php
return [
    'modules' => [
        'Zend\Router',
        'DomusErpModule',
        'YourApplicationModule',
    ]
],