ahmadrivaldi-arv/mekarisign

PHP library for www.mekarisign.com

v0.1.0-beta.1 2024-11-05 08:03 UTC

This package is auto-updated.

Last update: 2024-11-10 15:07:09 UTC


README

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

Installation

You can install the package via composer:

composer require ahmadrivaldi-arv/mekarisign

You can publish the config file with:

php artisan vendor:publish --tag="mekarisign-config"

This is the contents of the published config file:

return [

    /**
     * API endpoint mekari sign
     */
    "base_url" => env("MEKARISIGN_BASE_URL", "https://sandbox-api.mekari.com/v2/esign/v1"),

    /**
     * API client id from [developers,sandbox].mekarisign.com
     */
    "client_id" => env("MEKARISIGN_CLIENT_ID"),

    /**
     * API client secret from [developers,sandbox].mekarisign.com
     */
    "client_secret" => env("MEKARISIGN_CLIENT_SECRET"),

    "template_id" => env("MEKARISIGN_TEMPLATE_ID"),
];

Usage

see Mekari Sign Documentation for the payloads

$psreAutoSign = new \Ahmdrv\MekariSign\MekariSign;
$payload = []; // see mekari documentation

$pasreAutoSign->requestPsreSign($payload);

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

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