erpmesh/phplib-connect

PHP Library that integrated with ERPMesh for the synchronization between other ERP software to php base ERP software

dev-master 2015-10-10 17:49 UTC

This package is not auto-updated.

Last update: 2024-04-13 15:23:20 UTC


README

phplib-connect

Build Status Total Downloads Latest Stable Version Latest Unstable Version License

PHP Library that integrated with ERPMesh for the synchronization between other ERP software to php base ERP software

Installation

Install the latest version with

$ composer require erpmesh/phplib-connect

Basic Usage

<?php

use erpmesh\phplib\AbstractApplicationHandler;

// implement the handle class
class AppHandler extends AbstractApplicationHandler{
    public function CreatePO($docHeader, $docDetailAr){
        //create PO to your application
    }
    public function CreateSO($docHeader, $docDetailAr){
        //create SO to your application
    }
}


// call the handler to process data
$handler = new AppHandler();
$handler->handleRequest();

Documentation

Please see the documents here erpMesh

About

Requirements

  • erpMesh phplib-connect works with PHP 5.5 or above, and is also tested to work with HHVM.

Submitting bugs and feature requests

Bugs and feature request are tracked on GitHub

Author

Pitipong Guntawong - pppstudio.gm@gmail.com - https://fb.com/pppstudio

License

The ErpMesh phplib-connect is open-sourced software licensed under the MIT license