Skip to content

willhoffmann/DomusErpModule

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DomusErpModule

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',
    ]
],