Skip to content

Latest commit

 

History

History
53 lines (34 loc) · 1.24 KB

File metadata and controls

53 lines (34 loc) · 1.24 KB

Nextcaller php API

Build Status

A PHP wrapper around the Nextcaller API.

Requirements

Installation

You can install using composer or from source. Note that NextCaller is PSR-0 compliant:

Composer

If you don't have Composer install it:

$ curl -s https://getcomposer.org/installer | php

Require Nextcaller in your composer.json:

{
  "require": {
     "nextcaller/nextcaller-php-api": "dev-master"
  }
}

Refresh your dependencies:

$ php composer.phar update

Then make sure to require the autoloader and initialize all:

<?php
require(__DIR__ . '/vendor/autoload.php');

Documentation

Full documentation see here