DomusErpModule
, (*1)
ZF3 Module to consume the DomusErp API., (*2)
This module uses the domuserp-php, (*3)
Installation
The suggested installation method is via composer:, (*4)
composer require willhoffmann/domuserp-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:, (*5)
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:, (*6)
// config/application.config.php
return [
'modules' => [
'Zend\Router',
'DomusErpModule',
'YourApplicationModule',
]
],