dev-master
9999999-dev http://www.signable.co.uk/Signable PHP Library
MIT
The Requires
- php >=5.3.3
- ext-curl *
- ext-json *
The Development Requires
by Signable and contributors
api signable
Signable PHP Library
Our PHP SDK is designed to make it even easier to use and integrate with the Signable API. Full API documentation is available on our developer site., (*1)
Add the Signable PHP SDK to your composer.json file. If you are not using Composer, you should be. It's an excellent way to manage dependencies in your PHP application., (*2)
{ "require": { "signable/signable-php": "*" } }
Then at the top of your PHP script require the autoloader:, (*3)
require 'vendor/autoload.php';
If you are not using Composer, simply download and install the latest packaged release of the library as a zip., (*4)
You can download the latest release here., (*5)
Then require the library from package:, (*6)
require("path/to/signable-sdk-php/init.php");
Pass the API Client your API key using:, (*7)
Signable\ApiClient::setApiKey( 'your api key' );
And you're ready to get started!, (*8)
Signable PHP Library
MIT
api signable