Download the PHP package 99designs/rightsignature-php without Composer
On this page you can find all versions of the php package 99designs/rightsignature-php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download 99designs/rightsignature-php
More information about 99designs/rightsignature-php
Files in 99designs/rightsignature-php
Download 99designs/rightsignature-php
More information about 99designs/rightsignature-php
Files in 99designs/rightsignature-php
Vendor 99designs
Package rightsignature-php
Short Description PHP client for RightSignature.com API
License MIT
Package rightsignature-php
Short Description PHP client for RightSignature.com API
License MIT
Please rate this library. Is it a good library?
Informations about the package rightsignature-php
rightsignature-php
A PHP wrapper around the RightSignature API.
This is not a complete implementation. The following API calls are implemented:
- Document Details
- Prepackage Template
- Prefill Template
- Send Template
- Signer Links
The following API calls are not yet implemented:
- List Documents
- Batch Document Details
- Resend Reminder Emails
- Trash Document
- Extend Expiration
- Update Document Tags
- Send Document
- List Templates
- Template Details
- Build New Template
- User Details
- Add User
- Usage Report
Pull requests welcome.
Dependencies
RightSignature\HttpClient
currently has a dependency on Guzzle.
The test suite additionally requires PHPUnit and Mockery.
Usage
$client = RightSignature\HttpClient::forToken($myApiToken);
$rs = new RightSignature($client);
$document = $rs->documentDetails($someDocumentGuid);
Entities match the structure of the API responses:
// Access fields using ->
echo $document->state;
// Hyphen-separated identifiers become underscore_separated
echo $document->original_filename;
// Repeating elements are accessed like array members
echo $document->recipients[0]->name;
See RightSignature API documentation for details.
All versions of rightsignature-php with dependencies
PHP Build Version
Package Version
The package 99designs/rightsignature-php contains the following files
Loading the files please wait ....