2017 © Pedro Peláez
 

library imuis

PHP library to access the imuis API

image

opifer/imuis

PHP library to access the imuis API

  • Monday, May 22, 2017
  • by rvanlaarhoven
  • Repository
  • 2 Watchers
  • 5 Stars
  • 441 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 1 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

Build Status, (*1)

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., (*2)

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., (*3)

Installation

Add the package to your composer.json, (*4)

composer require opifer/imuis

Example

Quick example on how to import a new creditor into Imuis, (*5)

<?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();
}

The Versions

22/05 2017

dev-master

9999999-dev

PHP library to access the imuis API

  Sources   Download

MIT

The Requires

 

The Development Requires

03/03 2015

dev-login

dev-login

PHP library to access the imuis API

  Sources   Download

MIT

The Requires

 

The Development Requires

11/02 2015

v0.1

0.1.0.0

PHP library to access the imuis API

  Sources   Download

MIT

The Requires

 

The Development Requires