opifer/imuis
最新稳定版本:v0.1
Composer 安装命令:
composer require opifer/imuis
包简介
PHP library to access the imuis API
README 文档
README
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
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-02-11