ZF3 Module to consume the DomusErp API.
This module uses the domuserp-php
The suggested installation method is via composer:
composer require willhoffmann/domuserp-module- Copy
/vendor/willhoffmann/domuserp-module/config/domuserp-module.local.php.distinto 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.phpRegister as Zend Framework module inside your config/application.config.php file:
// config/application.config.php
return [
'modules' => [
'Zend\Router',
'DomusErpModule',
'YourApplicationModule',
]
],