Download the PHP package retech/sign-me without Composer

On this page you can find all versions of the php package retech/sign-me. 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 sign-me

SignMe (sign.celest.services) PHP-SDK

Handle your SignMe-requests in a human-digestible way. The goal is to make it feel like working with local models.

SignMe is a signature service targeted at integrators, rather than a pure UI-solution like most competitors.

Status: Private BETA. Please do not use in production yet

Example

Installation

composer require retech/sign-me

Usage

This package is a one-stop solution for all your remote signMe needs. It's functionality can be divided into three categories:

pure API

In order to use the public REST-API, method-wrappers simplify your calls. All of these methods return the result as assoc-array on success and throw the Exception Retech\Celest\SignMe\Exceptions\ConnectionException when things go wrong.

authenticate

argument type required
$clientId string no (reads from env)
$apiKey string no (reads from env)

The method establishes authentication using the environment variables _SIGN_ME_CLIENTID and _SIGN_ME_APIKEY. Alternatively, you can pass in your clientId & ApiKey directly.

get

argument type required
$url string yes

Execute GET-calls against the base-uri https://sign.celest.services/api/

post

argument type required
$url string yes
$payload array no

Execute POST-calls against the base-uri https://sign.celest.services/api/

put

argument type required
$url string yes
$payload array yes

Execute PUT-calls against the base-uri https://sign.celest.services/api/

delete

argument type required
$url string yes

Execute DELETE-calls against the base-uri https://sign.celest.services/api/

Easy Objects (OO)

Other than managing your transactions and company-settings, the use-case of the signMe API is predictable enough to make your day-to-day life easier with our object oriented interaction possibilities.

getDocuments

argument type required
$page int no (defaults to 1)

getDocument

argument type required
$documentSlug string yes

uploadDocument

argument type required
$name string yes
$filePath string yes

Currently accepts PDF & DOCX only

Entities

Document

Field

Webhook Reader

Lastly, let's have a quick look at the webhook validation tool included in this package

Support

Before the official release, no public support is provided.

License

MIT


All versions of sign-me with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
symfony/http-client Version ^7.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 retech/sign-me contains the following files

Loading the files please wait ...