gentor / smart-ucf
Laravel 的智能 Unicredit 消费者融资服务
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: 2024-09-15 16:55:23 UTC
README
SmartUcf 在线服务 for Laravel
安装
使用 composer 进行安装
composer require gentor/smart-ucf
在 config/app.php
中添加服务提供者
Gentor\SmartUcf\SmartUcfServiceProvider::class,
在 config/app.php
中添加外观别名
Gentor\SmartUcf\Facades\SmartUcf::class,
配置
在 app/config/smart-ucf.php
中更改默认设置
<?php return [ 'username' => env('UCF_USERNAME'), 'password' => env('UCF_PASSWORD'), 'test_mode' => env('UCF_TEST_MODE', true), ];