A PHP wrapper around the Nextcaller API.
- PHP >= 5.3 with cURL
- guzzlehttp/guzzle >= 3.9.2
You can install using composer or from source. Note that NextCaller is PSR-0 compliant:
If you don't have Composer install it:
$ curl -s https://getcomposer.org/installer | phpRequire Nextcaller in your composer.json:
{
"require": {
"nextcaller/nextcaller-php-api": "dev-master"
}
}Refresh your dependencies:
$ php composer.phar updateThen make sure to require the autoloader and initialize all:
<?php
require(__DIR__ . '/vendor/autoload.php');Full documentation see here