Download the PHP package docusign/maestro-client without Composer

On this page you can find all versions of the php package docusign/maestro-client. 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 maestro-client

The Official DocuSign Maestro PHP Client SDK

Build status

Requirements

Compatibility

Installation

This SDK is provided as open source, which enables you to customize its functionality to suit your particular use case. To do so, download or clone the repository. If the SDK’s given functionality meets your integration needs, or if you’re working through our code examples from the DocuSign Developer Center, you merely need to install it by following the instructions below.

Composer:

  1. In your PHP console, type: Composer require docusign/maestro-client;
  2. To use the package automatically, add to Composer's Autoload file: require_once('vendor/autoload.php');

Manual install:

  1. Download or clone this repository.
  2. Bind the PHP SDK to your server or place it in a static location.
    1. To bind to your server, edit the init.php file. Add:
      require_once('/path/to/docusign-maestro-client/autoload.php');
    2. To bind to single pages: In your PHP file that will utilize the PHP SDK, add:
      require_once('/path/to/docusign-maestro-client/autoload.php');
  3. If you are using Composer V2 and get the error 'namespace cannot be found', add the following class mapping in the composer.json file.
  4. "autoload": { "classmap": [ "/path/to/docusign-maestro-client/src" ] }

Dependencies

This client has the following external dependencies:

Code examples

You can find on our GitHub a self-executing package of code examples for the Maestro PHP SDK, called a Launcher, that demonstrates common use cases. You can also download a version preconfigured for your DocuSign developer account from Quickstart. These examples can use either the Authorization Code Grant or JSON Web Token (JWT) authentication workflows.

OAuth implementations

For details regarding which type of OAuth grant will work best for your DocuSign integration, see Choose OAuth Type in the DocuSign Developer Center.

For security purposes, DocuSign recommends using the Authorization Code Grant flow.

Support

Log issues against this client through GitHub. We also have an active developer community on Stack Overflow.

License

The DocuSign Maestro PHP Client SDK is licensed under the MIT License.

Additional resources


All versions of maestro-client with dependencies

PHP Build Version
Package Version
Requires php Version >=7.4
ext-curl Version *
ext-json Version *
ext-mbstring Version *
firebase/php-jwt Version ^6.0
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 docusign/maestro-client contains the following files

Loading the files please wait ....