PHPackages                             alexis-riot/laravel-yousign - 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. alexis-riot/laravel-yousign

ActiveLibrary[API Development](/categories/api)

alexis-riot/laravel-yousign
===========================

Laravel wrapper for the YouSign API

1.1(4y ago)52.2k1[2 issues](https://github.com/alexis-riot/laravel-yousign/issues)[1 PRs](https://github.com/alexis-riot/laravel-yousign/pulls)MITPHPPHP ^7.3|^8.0

Since May 6Pushed 4y ago1 watchersCompare

[ Source](https://github.com/alexis-riot/laravel-yousign)[ Packagist](https://packagist.org/packages/alexis-riot/laravel-yousign)[ RSS](/packages/alexis-riot-laravel-yousign/feed)WikiDiscussions master Synced 3w ago

READMEChangelog (2)Dependencies (1)Versions (3)Used By (0)

Laravel wrapper for the YouSign API
===================================

[](#laravel-wrapper-for-the-yousign-api)

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

[](#installation)

You can install the package via composer:

```
composer require alexis-riot/laravel-yousign
```

The service provider will automatically register itself.

You must publish the config file with:

```
php artisan vendor:publish --provider="AlexisRiot\Yousign\YousignServiceProvider" --tag="config"
```

This is the contents of the config file that will be published at `config/yousign.php`:

```
return [
    'api_key' => env('YOUSIGN_API_KEY', 'production'), // ['production', 'staging']
    'api_env' => env('YOUSIGN_API_ENV'),
];
```

Usage
-----

[](#usage)

### Users

[](#users)

Lists all users:

```
use AlexisRiot\Yousign\Facades\Yousign;

$users = Yousign::getUsers();
```

### Procedure

[](#procedure)

Send a file:

```
use AlexisRiot\Yousign\Facades\Yousign;

$file = Yousign::createFile([
    "name" => "devis.pdf",
    "content" => "JVBERi0xLjUKJb/3ov4KNiA...",
]);
```

Create a procedure:
*The creation of a procedure is fully dynamic, you can add multiple members and multiple files.*

```
use AlexisRiot\Yousign\Facades\Yousign;
use AlexisRiot\Yousign\YousignProcedure;

$file = Yousign::createFile([
    "name" => "devis.pdf",
    "content" => "JVBERi0xLjUKJb/3ov4KNiA...",
]);

$procedure = new YousignProcedure();
$procedure
    ->withName("My procedure")
    ->withDescription("The description of my procedure")
    ->addMember([
        'firstname' => "Alexis",
        'lastname' => "Riot",
        'email' => "contact@alexisriot.fr",
        'phone' => "+33 600000000",
    ], [$file])
    ->send();
```

License
-------

[](#license)

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

Creator
-------

[](#creator)

- [@alexis-riot](https://github.com/alexis-riot)

###  Health Score

29

—

LowBetter than 57% of packages

Maintenance12

Infrequent updates — may be unmaintained

Popularity23

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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 ~62 days

Total

2

Last Release

1823d ago

### Community

Maintainers

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

---

Top Contributors

[![alexis-riot](https://avatars.githubusercontent.com/u/42867550?v=4)](https://github.com/alexis-riot "alexis-riot (6 commits)")

---

Tags

laravelyousignlaravel 8.x

### Embed Badge

![Health badge](/badges/alexis-riot-laravel-yousign/health.svg)

```
[![Health](https://phpackages.com/badges/alexis-riot-laravel-yousign/health.svg)](https://phpackages.com/packages/alexis-riot-laravel-yousign)
```

###  Alternatives

[statamic/cms

The Statamic CMS Core Package

4.8k3.6M993](/packages/statamic-cms)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3741.3M46](/packages/tencentcloud-tencentcloud-sdk-php)[eslazarev/wildberries-sdk

Wildberries OpenAPI clients (generated).

273.0k](/packages/eslazarev-wildberries-sdk)[moe-mizrak/laravel-openrouter

Laravel package for OpenRouter (A unified interface for LLMs)

154177.9k2](/packages/moe-mizrak-laravel-openrouter)[flat3/lodata

OData v4.01 Producer for Laravel

99351.7k](/packages/flat3-lodata)[simplestats-io/laravel-client

Server-side analytics for Laravel that follows the full funnel from visit to registration to payment, attributed to the channel that drove it. Revenue, MRR, churn and ad-spend profit (ROAS/CAC) per channel. GDPR compliant, ad-blocker proof.

5022.0k](/packages/simplestats-io-laravel-client)

PHPackages © 2026

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