Download the PHP package infomaniak/api-php-client without Composer
On this page you can find all versions of the php package infomaniak/api-php-client. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download infomaniak/api-php-client
More information about infomaniak/api-php-client
Files in infomaniak/api-php-client
Download infomaniak/api-php-client
More information about infomaniak/api-php-client
Files in infomaniak/api-php-client
Vendor infomaniak
Package api-php-client
Short Description A PHP client library for accessing Infomaniak APIs.
License
Package api-php-client
Short Description A PHP client library for accessing Infomaniak APIs.
License
Please rate this library. Is it a good library?
Informations about the package api-php-client
api-php-client
Introduction
infomaniak/api-php-client is a PHP client for Infomaniak API. This client will provide documentation of the services available, describing URIs, HTTP methods and input parameters.
Installation
You can install infomaniak/api-php-client using Composer:
Quick integration with the following command:
Or add it to the require
section of your project's composer.json
.
Usage
<?php
require 'vendor/autoload.php';
use Infomaniak\Api;
$token = '123456789';
$client = new Api(['token' => $token]);
// Ping example
$result = $client->ping();
print_r($result);
// List mailbox example
$result = $client->listMailbox(
array(
'id' => 123456789,
'with' => '*'
)
);
print_r($result);
All versions of api-php-client with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.6.0
guzzlehttp/guzzle Version ~6.0
guzzlehttp/guzzle-services Version 1.1.0
guzzlehttp/guzzle Version ~6.0
guzzlehttp/guzzle-services Version 1.1.0
The package infomaniak/api-php-client contains the following files
Loading the files please wait ....