sidanval / vtwsclib-php
Vtiger Web Services PHP Client Library
0.4
2016-11-12 22:50 UTC
Requires
- php: >=5.5
- guzzlehttp/guzzle: ~6.0
This package is not auto-updated.
Last update: 2024-11-04 15:10:44 UTC
README
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..