Tesseract Crypto SDK PHP Laravel from Tesseract Crypto API v2
tesseract/crypto-sdk-laravel is a Laravel package for tesseract crypto sdk php laravel from tesseract crypto api v2.
It currently has 0 GitHub stars and 53 downloads on Packagist (latest version 0.3.0).
Install it with composer require tesseract/crypto-sdk-laravel.
Discover more Laravel packages by tesseract
or browse all Laravel packages to compare alternatives.
Last updated
Package for laravel with support of Tesseract Crypto SDK PHP.
Composer:
$ composer require tesseract/crypto-sdk-laravel
or add in composer.json
{
"require": {
"tesseract/crypto-sdk-laravel": "*"
}
}
If you don't use auto-discovery, add the ServiceProvider to the providers array in config/app.php
Tesseract\Illuminate\Support\ServiceProvider::class,
If you want use the facade, add this your facades in config/app.php
'CryptoSDK' => Tesseract\Illuminate\Support\Facade::class,
Copy the package config to your local config with the publish command:
php artisan vendor:publish --provider="Tesseract\Illuminate\Support\ServiceProvider"
<?php