kottergroup/vtwsclib-php

Vtiger Web Services PHP Client Library - originally from salaros/vtwsclib-php

0.5.3 2017-06-09 13:11 UTC

This package is not auto-updated.

Last update: 2024-04-11 23:30:11 UTC


README

Latest Stable Version Dependency Status SensioLabsInsight composer.lock

vtwsclib-php

Vtiger Web Services PHP Client Library

Installing via Composer

The recommended way to install vtwsclib-php is through Composer.

# Install Composer
curl -sS https://getcomposer.org/installer | php

Next, run the Composer command to install the latest stable version of Guzzle:

composer require salaros/vtwsclib-php

..or edit your composer.json file manually by adding:

{
    "require": {
        "salaros/vtwsclib-php": "dev-master"
    }
}

After installing, you need to require Composer's autoloader:

require 'vendor/autoload.php';

How to use

$client=new WSClient($url);
$login=$client->login($user, $accessKey);

..new usage examples are coming soon..