sidanval/vtwsclib-php

Vtiger Web Services PHP Client Library

0.4 2016-11-12 22:50 UTC

This package is not auto-updated.

Last update: 2024-04-22 12:45:15 UTC


README

Dependency Status

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..