tesseract / crypto-sdk-laravel
Tesseract Crypto SDK PHP Laravel from Tesseract Crypto API v2
Installs: 53
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/tesseract/crypto-sdk-laravel
Requires
- php: >=7.1.0
- illuminate/support: >=5.0,<5.8
- tesseract/crypto-sdk: ~0.3
Requires (Dev)
- phpunit/phpunit: 6.*
This package is auto-updated.
Last update: 2025-10-29 03:11:15 UTC
README
Package for laravel with support of Tesseract Crypto SDK PHP.
How to install
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"
How to use
<?php