gentor / smart-ucf
Smart Unicredit Consumer Financing Service for Laravel
dev-master
2023-09-15 14:18 UTC
Requires
- php: >= 7.0
- guzzlehttp/guzzle: ^6.3
- illuminate/support: 5.*
- phpoffice/phpspreadsheet: ^1.2
This package is auto-updated.
Last update: 2026-02-15 20:21:06 UTC
README
SmartUcf Online Service for Laravel
Installation
Installation using composer:
composer require gentor/smart-ucf
Add the service provider in config/app.php:
Gentor\SmartUcf\SmartUcfServiceProvider::class,
Add the facade alias in config/app.php:
Gentor\SmartUcf\Facades\SmartUcf::class,
Configuration
Change your default settings in app/config/smart-ucf.php:
<?php return [ 'username' => env('UCF_USERNAME'), 'password' => env('UCF_PASSWORD'), 'test_mode' => env('UCF_TEST_MODE', true), ];