wnasich/signthis-php

PHP client to consume Signthis JSON API

0.9.2 2016-08-25 18:09 UTC

This package is auto-updated.

Last update: 2024-04-11 15:58:43 UTC


README

This is the PHP wrapper for Signthis REST API.

Codeship Status for wnasich/signthis-php

Setup

You must provide a valid email and password in order to use the library.

require_once(__DIR__ . "/signthis/SignthisClient.php");

$client = new Client();
$client->auth->login('email', 'password');

see example file example/example.php