PHPackages                             eazieer/adobe-sign-v6-php - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. eazieer/adobe-sign-v6-php

ActiveLibrary[API Development](/categories/api)

eazieer/adobe-sign-v6-php
=========================

Adobe Sign V6 Rest API PHP Client

0.2.0(8y ago)31.6k3[1 PRs](https://github.com/eazieer/adobe-sign-v6-php/pulls)MITPHPPHP &gt;=5.6.0

Since Jul 19Pushed 4y ago1 watchersCompare

[ Source](https://github.com/eazieer/adobe-sign-v6-php)[ Packagist](https://packagist.org/packages/eazieer/adobe-sign-v6-php)[ RSS](/packages/eazieer-adobe-sign-v6-php/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (4)Versions (5)Used By (0)

Adobe Sign V6 Rest API client for PHP
=====================================

[](#adobe-sign-v6-rest-api-client-for-php)

Project forked from the great work of Kevinem and his Rest API V5 client available at

[![Latest Stable Version](https://camo.githubusercontent.com/b9f0c9c4a56329f3ca1cc9ad1b7583c05a14c69888a486e25c518e4ba3da06fe/68747470733a2f2f706f7365722e707567782e6f72672f65617a696565722f61646f62652d7369676e2d76362d7068702f762f737461626c653f666f726d61743d666c61742d737175617265)](https://packagist.org/packages/eazieer/adobe-sign-v6-php)[![License](https://camo.githubusercontent.com/087397fbd959c98bcd04572a3b55af3a9e9941bf48e978914667426e49c9c1f2/68747470733a2f2f706f7365722e707567782e6f72672f65617a696565722f61646f62652d7369676e2d76362d7068702f6c6963656e73653f666f726d61743d666c61742d737175617265)](https://packagist.org/packages/eazieer/adobe-sign-v6-php)[![Build Status](https://camo.githubusercontent.com/34f12c42d582b3d01f7036f9cafae3a560718a2d68d48164455556dc95687139/68747470733a2f2f7472617669732d63692e6f72672f65617a696565722f61646f62652d7369676e2d76362d7068702e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/eazieer/adobe-sign-v6-php)

Installation
------------

[](#installation)

To install, use composer:

```
composer require eazieer/adobe-sign-v6-php (almost done !)

```

Documentation
-------------

[](#documentation)

### Example Usage

[](#example-usage)

```
session_start();

$provider = new Eazieer\OAuth2\Client\AdobeSign([
    'clientId'          => 'your_client_id',
    'clientSecret'      => 'your_client_secret',
    'redirectUri'       => 'your_callback',
    'scope'             => [
          'scope1:type',
          'scope2:type'
    ]
]);

$adobeSign = new AdobeSign($provider);

if (!isset($_GET['code'])) {
    $authorizationUrl = $adobeSign->getAuthorizationUrl();
    $_SESSION['oauth2state'] = $provider->getState();
    header('Location: ' . $authorizationUrl);
} elseif (empty($_GET['state']) || ($_GET['state'] !== $_SESSION['oauth2state'])) {
    unset($_SESSION['oauth2state']);
    exit('Invalid state');
} else {
    $accessToken = $adobeSign->getAccessToken($_GET['code']);
    $adobeSign->setAccessToken($accessToken->getToken());
    $adobeSign->createAgreement([
            "fileInfos" => array([
                'transientDocumentId' => 'your_transient_document_id',
                ]),
            'name'              => 'your_document_name',
            'participantSetsInfo' => array([
                'memberInfos' => array([
                    'email' => 'member_email'
                ]),
                'order' => 1,
                'role'        => 'SIGNER',
            ]),
            'signatureType'     => 'ESIGN',
            'state'=> 'IN_PROCESS',
    ]);
}
```

### Generate Multipart Stream for transient document upload

[](#generate-multipart-stream-for-transient-document-upload)

```
$file_path = '/path/to/local/document';

$file_stream = Psr7\FnStream::decorate(Psr7\stream_for(file_get_contents($file_path)), [
    'getMetadata' => function() use ($file_path) {
        return $file_path;
    }
]);

$multipart_stream   = new Psr7\MultipartStream([
    [
        'name'     => 'File',
        'contents' => $file_stream
    ]
]);

$transient_document = $adobeSign->uploadTransientDocument($multipart_stream);
```

License
-------

[](#license)

The MIT License (MIT) Copyright (c) 2016 Kevin Em Copyright (c) 2019 EAZIEER

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity21

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 70% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~199 days

Total

3

Last Release

3183d ago

PHP version history (2 changes)0.1.0PHP &gt;=5.5.0

0.1.1PHP &gt;=5.6.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/30226f2104fec6cbe13c3ff3efaf97dab978fbbce3c94c29647cc3565cc6eb4d?d=identicon)[DaveEAZIEER](/maintainers/DaveEAZIEER)

---

Top Contributors

[![pstoragithub](https://avatars.githubusercontent.com/u/48330402?v=4)](https://github.com/pstoragithub "pstoragithub (7 commits)")[![DaveEAZIEER](https://avatars.githubusercontent.com/u/52819423?v=4)](https://github.com/DaveEAZIEER "DaveEAZIEER (3 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/eazieer-adobe-sign-v6-php/health.svg)

```
[![Health](https://phpackages.com/badges/eazieer-adobe-sign-v6-php/health.svg)](https://phpackages.com/packages/eazieer-adobe-sign-v6-php)
```

###  Alternatives

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M480](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M271](/packages/twilio-sdk)[knplabs/github-api

GitHub API v3 client

2.2k15.8M187](/packages/knplabs-github-api)[facebook/php-business-sdk

PHP SDK for Facebook Business

90121.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

73813.7M114](/packages/meilisearch-meilisearch-php)[google/gax

Google API Core for PHP

263103.1M454](/packages/google-gax)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
