PHPackages                             industrious/hellosign-laravel - 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. industrious/hellosign-laravel

AbandonedArchivedLibrary[API Development](/categories/api)

industrious/hellosign-laravel
=============================

Description

129.3k1[1 issues](https://github.com/industrious-agency/hellosign-laravel/issues)PHP

Since Jul 23Pushed 7y agoCompare

[ Source](https://github.com/industrious-agency/hellosign-laravel)[ Packagist](https://packagist.org/packages/industrious/hellosign-laravel)[ RSS](/packages/industrious-hellosign-laravel/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (2)Used By (0)

HelloSign Laravel
=================

[](#hellosign-laravel)

[![Latest Version on Packagist](https://camo.githubusercontent.com/857fcd58ff462883413b0f39e9c24cdd179e6f55a5389536d46730c162d9c339/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f696e6475737472696f75732f68656c6c6f7369676e2d6c61726176656c2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/industrious/hellosign-laravel)[![Total Downloads](https://camo.githubusercontent.com/bce3bf0022ab4e812b306a94701331e46ed6a723e92db829c84919bd34ab67cd/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f696e6475737472696f75732f68656c6c6f7369676e2d6c61726176656c2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/industrious/hellosign-laravel)[![Build Status](https://camo.githubusercontent.com/17110f533de08449eaf9396e205652d07e7bfbc7bd246d4bade5d3bc8dc606b2/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f696e6475737472696f75732f68656c6c6f7369676e2d6c61726176656c2f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/industrious/hellosign-laravel)[![StyleCI](https://camo.githubusercontent.com/54a1c5707d0cbdb452575ee123ba4d841a74042dc277a1cc9e9f4ece87b3e9d3/68747470733a2f2f7374796c6563692e696f2f7265706f732f3133373539343330312f736869656c64)](https://github.styleci.io/repos/137594301/shield)

This package acts as a wrapper, for the HelloSign PHP SDK, to inject the relevant credentials and allow you to use the package in the container. Some examples of usage have been provided below.

See the [HelloSign PHP SDK](https://github.com/hellosign/hellosign-php-sdk) for full details.

Take a look at [contributing.md](contributing.md) to see a to do list.

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

[](#installation)

Via Composer

```
$ composer require industrious/hellosign-laravel
```

Usage
-----

[](#usage)

Publish the config, and add the relevant API authentication details to your `.env` file.

```
php artisan vendor:publish --tag=laravel-hellosign
```

Examples
--------

[](#examples)

### Get client account details

[](#get-client-account-details)

```
/**
 * @param  HelloSignLaravel\Client $client
 */
public function client(Client $client)
{
    $client = $client->getAccount();

    ...
```

### Send a signature request

[](#send-a-signature-request)

```
/**
 * @param  HelloSignLaravel\Classes\SignatureRequest $signature_request
 */
public function sign(SignatureRequest $signature_request)
{
    $request = $signature_request
        ->setTitle('Title')
        ->setSubject('Subject')
        ->setMessage('Message')
        ->addSigner('email@address.com', 'Client name');

    $file = storage_path('app/file.pdf');

    $request->addFile($file);

    $response = $request->send();

    ...
```

### Send a signature request using a pre-defined template

[](#send-a-signature-request-using-a-pre-defined-template)

```
/**
 * @param  HelloSignLaravel\Classes\SignatureRequest $signature_request
 */
public function templateSign(TemplateSignatureRequest $signature_request)
{
    $request = $signature_request
        ->setTemplateId(config('hellosign.templates.contract'))
        ->setTitle('Title')
        ->setSubject('Subject')
        ->setMessage('Message')
        ->setSigner('Client', 'email@address.com', 'Test User');

    $request->setCustomFieldValue('Name', 'Test User');

    $response = $request->send();

    ...
```

Change log
----------

[](#change-log)

Please see the [changelog](changelog.md) for more information on what has changed recently.

Testing
-------

[](#testing)

```
$ composer test
```

Contributing
------------

[](#contributing)

Please see [contributing.md](contributing.md) for details and a todolist.

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Christian Thomas](https://github.com/industrious-mouse)
- [All Contributors](../../contributors)

License
-------

[](#license)

MIT. Please see the [license file](license.md) for more information.

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity27

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity42

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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/e4e4c666d8933ea89562350bd66ab2928949fab1fb7c17289f6d0b4448f5b17c?d=identicon)[industrious-mouse](/maintainers/industrious-mouse)

![](https://www.gravatar.com/avatar/2e248405bd1b88852dbff45d091e2678bbd2a5cf0412115a99507c8786cd580d?d=identicon)[christian-thomas](/maintainers/christian-thomas)

---

Top Contributors

[![christian-thomas](https://avatars.githubusercontent.com/u/740172?v=4)](https://github.com/christian-thomas "christian-thomas (3 commits)")

---

Tags

hellosignhellosign-apilaravelphp

### Embed Badge

![Health badge](/badges/industrious-hellosign-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/industrious-hellosign-laravel/health.svg)](https://phpackages.com/packages/industrious-hellosign-laravel)
```

###  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.9M272](/packages/twilio-sdk)[facebook/php-business-sdk

PHP SDK for Facebook Business

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

PHP wrapper for the Meilisearch API

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

Google API Core for PHP

265103.1M454](/packages/google-gax)[google/common-protos

Google API Common Protos for PHP

173103.7M50](/packages/google-common-protos)

PHPackages © 2026

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