PHPackages                             mettle/oauth2-adobe-sign - 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. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. mettle/oauth2-adobe-sign

ActiveLibrary[Authentication &amp; Authorization](/categories/authentication)

mettle/oauth2-adobe-sign
========================

Adobe Sign OAuth 2.0 Client Provider for The PHP League OAuth2-Client

v0.3.0(4y ago)176.9k↓24%11MITPHPPHP ^7.3 || ^8.0 || ^8.1

Since Jul 15Pushed 4y agoCompare

[ Source](https://github.com/mettle/oauth2-adobe-sign)[ Packagist](https://packagist.org/packages/mettle/oauth2-adobe-sign)[ RSS](/packages/mettle-oauth2-adobe-sign/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)Dependencies (3)Versions (11)Used By (1)

Adobe Sign Provider for OAuth 2.0 Client
========================================

[](#adobe-sign-provider-for-oauth-20-client)

This package provides Adobe Sign OAuth 2.0 support for The PHP League's [OAuth 2.0 Client](https://github.com/thephpleague/oauth2-client).

[![Source Code](https://camo.githubusercontent.com/432562c3becc45db991f2bdad3905b0d44d70710eac89c15b58212411f683f2a/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f736f757263652d6d6574746c652f6f61757468322d2d61646f62652d2d7369676e2d626c75652e7376673f7374796c653d666c61742d737175617265)](https://github.com/mettle/oauth2-adobe-sign)[![Latest Version](https://camo.githubusercontent.com/3dee0e1ee5d0cdcf2bbe31b26197f7bf4dd0e2c8ad5efde53603236d873c934d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f6d6574746c652f6f61757468322d61646f62652d7369676e2e7376673f7374796c653d666c61742d737175617265)](https://github.com/mettle/oauth2-adobe-sign/releases)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](https://github.com/mettle/oauth2-adobe-sign/blob/master/LICENSE)[![Build Status](https://camo.githubusercontent.com/5c28576cd2eb7d03b43ad87906f6ec5d9dcc9d918252eb47f5f1683819a67575/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f6d6574746c652f6f61757468322d61646f62652d7369676e2f43493f6c6162656c3d4349266c6f676f3d676974687562267374796c653d666c61742d737175617265)](https://github.com/mettle/oauth2-adobe-sign/actions?query=workflow%3ACI)

Requirements
------------

[](#requirements)

The following versions of PHP are supported:

- PHP 8.1
- PHP 8.0
- PHP 7.4
- PHP 7.3

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

[](#installation)

To install, use composer:

```
composer require mettle/oauth2-adobe-sign

```

Usage
-----

[](#usage)

Use [The League's OAuth2 Client](https://github.com/thephpleague/oauth2-client) with `\Mettle\OAuth2\Client\AdobeSign` as the provider.

### Authorization Code Flow

[](#authorization-code-flow)

```
$provider = new Mettle\OAuth2\Client\AdobeSign([
    'clientId'          => 'your_client_id',
    'clientSecret'      => 'your_client_secret',
    'redirectUri'       => 'your_callback',
    'dataCenter'        => 'secure.na1',
    'scope'             => [
          'scope1:type',
          'scope2:type'
    ]
]);
```

License
-------

[](#license)

The MIT License (MIT). Please see [LICENSE](LICENSE) for more information.

###  Health Score

37

—

LowBetter than 83% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity33

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity68

Established project with proven stability

 Bus Factor1

Top contributor holds 77.8% 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 ~254 days

Recently: every ~507 days

Total

9

Last Release

1560d ago

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

0.1.5PHP &gt;=5.6.0

v0.2.0PHP ^7.3 || ^8.0

v0.3.0PHP ^7.3 || ^8.0 || ^8.1

### Community

Maintainers

![](https://www.gravatar.com/avatar/e3aca6f811144bbbc5d4408f2b632ac387df07dc02c1981484494694ed793502?d=identicon)[mauricius](/maintainers/mauricius)

![](https://www.gravatar.com/avatar/d86740b4b3f70476df6134920713ef288244c19778e6d1e66f9ceba402e34200?d=identicon)[jontybehr](/maintainers/jontybehr)

---

Top Contributors

[![mauricius](https://avatars.githubusercontent.com/u/7000852?v=4)](https://github.com/mauricius "mauricius (7 commits)")[![grantjanecek](https://avatars.githubusercontent.com/u/17169721?v=4)](https://github.com/grantjanecek "grantjanecek (2 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/mettle-oauth2-adobe-sign/health.svg)

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

###  Alternatives

[league/oauth2-google

Google OAuth 2.0 Client Provider for The PHP League OAuth2-Client

42121.2M118](/packages/league-oauth2-google)[knpuniversity/oauth2-client-bundle

Integration with league/oauth2-client to provide services

84016.7M61](/packages/knpuniversity-oauth2-client-bundle)[thenetworg/oauth2-azure

Azure Active Directory OAuth 2.0 Client Provider for The PHP League OAuth2-Client

2509.6M48](/packages/thenetworg-oauth2-azure)[stevenmaguire/oauth2-keycloak

Keycloak OAuth 2.0 Client Provider for The PHP League OAuth2-Client

2275.9M27](/packages/stevenmaguire-oauth2-keycloak)[patrickbussmann/oauth2-apple

Sign in with Apple OAuth 2.0 Client Provider for The PHP League OAuth2-Client

1132.5M6](/packages/patrickbussmann-oauth2-apple)[microsoft/kiota-authentication-phpleague

Authentication provider for Kiota using the PHP League OAuth 2.0 client to authenticate against the Microsoft Identity platform

153.2M7](/packages/microsoft-kiota-authentication-phpleague)

PHPackages © 2026

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