beliven-it / laravel-notarify
A laravel package to perform notarization through blockchain
Fund package maintenance!
Beliven
Requires
- php: ^8.3
- illuminate/contracts: ^10.0||^11.0
- spatie/laravel-package-tools: ^1.16
Requires (Dev)
- larastan/larastan: ^2.9
- laravel/pint: ^1.14
- nunomaduro/collision: ^8.1.1||^7.10.0
- orchestra/testbench: ^9.0.0||^8.22.0
- pestphp/pest: ^3.0
- pestphp/pest-plugin-arch: ^3.0
- pestphp/pest-plugin-laravel: ^3.0
- phpstan/extension-installer: ^1.3
- phpstan/phpstan-deprecation-rules: ^1.1
- phpstan/phpstan-phpunit: ^1.3
This package is auto-updated.
Last update: 2025-06-16 19:00:00 UTC
README
A laravel package to perform notarization through blockchain.
This package supports notarization on the following providers:
Installation
You can install the package via composer:
composer require beliven-it/laravel-notarify
You can publish the config file with:
php artisan vendor:publish --tag="notarify-config"
Set the ENV variables
NOTARIFY_SERVICE=scalingparrots
// NOTARIFY_SERVICE=iuscribo
// If you use Scaling Parrots
SCALING_PARROTS_ENDPOINT=
SCALING_PARROTS_USERNAME=
SCALING_PARROTS_PASSWORD=
// If you use Iuscribo
IUSCRIBO_ENDPOINT=
IUSCRIBO_USERNAME=
IUSCRIBO_PASSWORD=
IUSCRIBO_COMPANY==
Usage
<?php use Beliven\Notarify\Facades\Notarify; $notarization = Notarify::upload($item) // $item is a file $notarization = Notarify::verify($item); // $item can be a file or a Notarization instance // The returned value is an instance of Beliven\Notarify\Entities\Notarization::class, which has the following public methods: $notarization->getId(); // Returns the Notarization ID $notarization->getHash(); // Returns the Notarization Hash $notarization->getTimestamp(); // Returns the Notarization timestamp as a Carbon instance (UTC Timezone) $notarization->getExplorerUrls(); // Returns the Notarization explorer urls as indexed array
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.