定制 opifer/imuis 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

opifer/imuis

最新稳定版本:v0.1

Composer 安装命令:

composer require opifer/imuis

包简介

PHP library to access the imuis API

README 文档

README

Build Status

Imuis

Muis software builds administrative software for accountants and entrepreneurs. This package eases the communication with the iMuis API from a PHP project. The client is written on version 10-09-2013 from the Cloudswitch iMuis webservice.

This package is a work in progress. Currently only a few methods are available. More methods will be added and we're open to any pull requests.

Installation

Add the package to your composer.json

composer require opifer/imuis

Example

Quick example on how to import a new creditor into Imuis

<?php

require 'vendor/autoload.php';

use Opifer\Imuis\Client;
use Opifer\Imuis\Model\Creditor;

$creditor = new Creditor();
$creditor->setName('Rick van Laarhoven');
// Set any other data on the creditor

$client = new Client('PARTNERKEY', 'ENVIRONMENT');
$response = $client->createCreditor($creditor);

if ($response->hasErrors()) {
    $errors = $response->getErrors();
}

统计信息

  • 总下载量: 1.66k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 4
  • 点击次数: 2
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 3
  • Watchers: 2
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-02-11