gentor / smart-ucf
Smart Unicredit Consumer Financing Service for Laravel
Installs: 5 907
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 1
Open Issues: 0
Requires
- php: >= 7.0
- guzzlehttp/guzzle: ^6.3
- illuminate/support: 5.*
- phpoffice/phpspreadsheet: ^1.2
This package is auto-updated.
Last update: 2024-11-15 17:17:20 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), ];