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

ActiveLibrary

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 yesterday

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

28

—

LowBetter than 54% of packages

Maintenance12

Infrequent updates — may be unmaintained

Popularity22

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity58

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

1770d 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

[tzsk/sms

A robust and unified SMS gateway integration package for Laravel, supporting multiple providers.

320244.3k6](/packages/tzsk-sms)[tpetry/laravel-mysql-explain

Get Visual MySQL EXPLAIN for Laravel.

264154.2k](/packages/tpetry-laravel-mysql-explain)[erag/laravel-disposable-email

A Laravel package to detect and block disposable email addresses.

226102.4k](/packages/erag-laravel-disposable-email)[muhammadhuzaifa/telescope-guzzle-watcher

Telescope Guzzle Watcher provide a custom watcher for intercepting http requests made via guzzlehttp/guzzle php library. The package uses the on\_stats request option for extracting the request/response data. The watcher intercept and log the request into the Laravel Telescope HTTP Client Watcher.

98239.8k1](/packages/muhammadhuzaifa-telescope-guzzle-watcher)[ralphjsmit/laravel-helpers

A package containing handy helpers for your Laravel-application.

13704.6k2](/packages/ralphjsmit-laravel-helpers)[truckersmp/steam-socialite

Laravel Socialite provider for Steam OpenID.

1516.7k](/packages/truckersmp-steam-socialite)

PHPackages © 2026

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