Download the PHP package mrnewport/laravel-docsign without Composer

On this page you can find all versions of the php package mrnewport/laravel-docsign. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-docsign

Laravel Document Generation & E-Signatures (mrnewport/laravel-docsign)

A config-driven, expandable package for document generation (multiple PDF and template engines) and e-signatures (multiple providers). Ideal for any use case—from real estate lease agreements, NDAs, or HR forms, to finance, legal, and more.

Table of Contents


Features

  1. Multi-Engine PDFs: DomPDF or wkhtmltopdf (plus custom).
  2. Multi-Engine Templates: Blade or Twig (plus custom).
  3. Pluggable E-Sign: Local (demo), DocuSign, HelloSign.
  4. Config-Driven: Swap engines and providers in docsign.php without editing package code.
  5. Storage Disk support for PDF files.
  6. Facade-based usage: DocSign::generate(...), DocSign::requestSignature(...), etc.

Requirements


Installation

  1. Require the package:

  2. Publish config (optional):

  3. Migrate:

Done—you can now generate docs, request signatures, handle callbacks.


Configuration

All config is in src/config/docsign.php (published to config/docsign.php if you run the above publish command). No direct package edits required—just tweak config to your needs.

PDF Renderer

Template Engine

Signature Providers

Storage Disk

Defines which disk (from config/filesystems.php) to store final PDFs. E.g., 's3' or 'local'.


Usage

Creating a Document

Generating a PDF

Requesting E-Signatures

You might redirect the user to $result['url'] if it’s an external signature page.

Handling Callbacks

  1. In config, each provider has a 'callback_url'.
  2. The package routes POST /docsign/callback/{provider} to RouteCallbacks@signatureCallback.
  3. That calls DocSign::handleCallback($provider, $request).
  4. The provider then sets doc.status='completed' (or similar).

Example Multi-Signer Flow

If you need signers in a specific order or multiple separate sign events:


Advanced & Unusual Use Cases

Versioning Documents

If you want doc versioning:

  1. Add a version column to documents.
  2. Before re-generating, increment doc.version in your application logic.
  3. Store old PDFs under a versioned filename.

Security & Encryption

For truly sensitive docs:

Docker Environments

If using wkhtmltopdf in Docker:

  1. Add RUN apt-get update && apt-get install -y wkhtmltopdf (or a specialized image).
  2. Possibly store the path in .env as WKHTMLTOPDF_PATH=/usr/bin/wkhtmltopdf.
  3. The package’s test can skip if wkhtmltopdf isn’t found.

Notifications & Webhooks

Your application can:


Expandability

Custom PDF Engines

  1. Create a class implementing MrNewport\LaravelDocSign\Services\Pdf\PdfRendererInterface.
  2. Bind it in your app:

  3. Set 'pdf_renderer' => 'mycustom' in docsign.php.

Custom Template Engines

  1. Implement MrNewport\LaravelDocSign\Services\Template\TemplateEngineInterface.
  2. Bind in your AppServiceProvider:

  3. 'template_engine' => 'markdown'.

Custom Signature Providers

  1. Implement SignatureProviderInterface.
  2. Add it to config('docsign.signature.providers').
  3. No package edits. If 'key' => 'mysigner', then 'class' => \App\Signing\MySignerProvider::class.

Testing

In CI or local dev, ensure you have wkhtmltopdf installed if you want that test to pass. DomPDF-based tests do not require extra binaries.


License

This package is open-sourced software licensed under the MIT license. Expand it solely via config or custom classesnever by editing the package’s internal files. Enjoy your dynamic documents and e-sign workflows!


All versions of laravel-docsign with dependencies

PHP Build Version
Package Version
Requires php Version >=8.1
illuminate/support Version ^11.0
illuminate/database Version ^11.0
illuminate/view Version ^11.0
illuminate/config Version ^11.0
dompdf/dompdf Version ^2.0
knplabs/knp-snappy Version ^1.4
twig/twig Version ^3.0
pestphp/pest Version ^3.7
pestphp/pest-plugin-laravel Version ^3.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package mrnewport/laravel-docsign contains the following files

Loading the files please wait ....