devhun/delynet-api-client

PHP API client for Delynet WEBFAX

v1.0.3 2020-03-11 07:34 UTC

This package is auto-updated.

Last update: 2024-04-11 16:56:01 UTC


README

Build Status Latest Stable Version Total Downloads License

Install using composer

Open a shell, cd to your poject and type:

composer require devhun/delynet-api-client

or edit composer.json and add:

{
    "require": {
        "devhun/delynet-api-client": "~1.0"
    }
}

If you want to use the GuzzleHttpAdapter, you will need to add Guzzle 6.

Usage examples

Guzzle
require 'vendor/autoload.php';

use DevHun\Delynet\DelynetClient;
use DevHun\Delynet\Adapter\GuzzleHttpAdapter;

// Using Guzzle 6...
$client = new DelynetClient(
    new GuzzleHttpAdapter(),
    'your-agent-id'
);

$result = $client->fax()->{method}();

var_export($result);
CURL
require 'vendor/autoload.php';

use DevHun\Delynet\DelynetClient;
use DevHun\Delynet\Adapter\CurlAdapter;

// Using regular CURL, courtesy of 'malc0mn'
$client = new DelynetClient(
    new CurlAdapter(),
    'your-agent-id'
);

$result = $client->fax()->{method}();

var_export($result);