Download the PHP package tylermenezes/legalesign-php without Composer

On this page you can find all versions of the php package tylermenezes/legalesign-php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package legalesign-php

Legalesign-PHP

A PHP-based interface to Legalesign.

Use

Include it with Composer:

composer require tylermenezes/legalesign-php

Set your credentials

You can view your API credentials at the bottom of your user page. Non-sandboxed use currently requires a paid plan, but you can test your integration in the sandbox. (When in sandbox mode, you will only be able to send requests to five emails you specify on your profile page.)

You can set your credentials like so:

If you use Laravel, credentials will automatically be pulled from a legalesign.php config file, if one exists. The format of this file should be:

Change API Base URL

For some reasons, some accounts do not work with https://api.legalesign.com/api/v1.

You can change your Base API URL by calling apiBase() method.

Create a signer

Create a signing request

The Document::create() method actually returns a Document\SigningRequest object, which will allow you to configure your signing request. As shown above, you should configure properties by chaining method calls with the names of the properties you'd like to set.

The following properties are supported:

You can also add signers and cc'ers (people who will be cc'd on all emails) with the addSigner and addCc methods.

To actually send the document, end the chain with one of the following three methods:

All of these methods return a Document, of which you should generally save the id.

Get signer fields

The getSignerFields() method returns an associative array of all your signer fields. Refer below for the sample format:

Retrieve an existing signing request, and try to download the executed agreement.


All versions of legalesign-php with dependencies

PHP Build Version
Package Version
Requires guzzlehttp/guzzle Version ^6.1
nesbot/carbon Version ^1.21
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package tylermenezes/legalesign-php contains the following files

Loading the files please wait ....