11## HelloSign PHP SDK
22
3- This is the official PHP SDK for HelloSign's API. [ View api documentation and examples .] ( https://app.hellosign.com/api/documentation )
3+ This is the official PHP SDK for HelloSign's API. [ View API Documentation and Examples .] ( https://app.hellosign.com/api/documentation )
44
55## Installation
66
@@ -9,17 +9,17 @@ This is the official PHP SDK for HelloSign's API. [View api documentation and e
99The latest version of the SDK requires PHP version 5.5 or higher.
1010
1111You can import this SDK into your library two ways, either through including the base HelloSign.php file into your
12- project or using Composer ( [ https://getcomposer.org/doc/00-intro.md ] ( https://getcomposer.org/doc/00-intro.md ) ).
12+ project or using [ Composer ] ( https://getcomposer.org/doc/00-intro.md ) .
1313
14- To use composer :
14+ To use Composer :
1515
1616- First, install Composer if you don't have it already
1717
1818 ``` shell
1919 curl -sS https://getcomposer.org/installer | php
2020 ```
2121
22- - Create ` composer.json` and add the following
22+ - Create a ` composer.json` file and add the following:
2323
2424 ` ` ` json
2525 {
@@ -53,22 +53,19 @@ $client = new HelloSign\Client($apikey);
5353
5454# ## Email/Password Config
5555
56-
5756` ` ` php
5857$client = new HelloSign\C lient($email_address , $password );
5958` ` `
6059
6160# ## Oauth Config
6261
63-
6462` ` ` php
6563$client = new HelloSign\C lient($oauth_token ); //instance of HelloSign\O AuthToken
6664` ` `
6765
6866Your app users are almost ready to start signing!
6967See below for the most common use cases for this wrapper.
7068
71-
7269# # Usage
7370
7471You can test your authentication by calling
@@ -147,6 +144,7 @@ if ($response->isComplete()) {
147144` ` `
148145
149146# ## Creating an Embedded Signature Request to use for Embedded Signing
147+ Refer to the (Embedded Signing Walkthrough)[https://app.hellosign.com/api/embeddedSigningWalkthrough] for more details.
150148
151149` ` ` php
152150// Create the SignatureRequest or TemplateSignatureRequest object
0 commit comments