Skip to content

getclair/phinch-laravel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel Phinch

A Laravel wrapper for the Finch API SDK

Latest Version on Packagist PHP from Packagist

Installation

composer require getclair/phinch-laravel

Configuration

Publish the Phinch config:

php artisan vendor:publish --tag=phinch

In your config/services.php file add:

'finch' => [
    'client_id' => env('FINCH_CLIENT_ID'),
    'client_secret' => env('FINCH_CLIENT_SECRET'),
    'connect_redirect' => env('FINCH_CONNECT_REDIRECT_URI'),
],

Add the associated values to your .env file.

Usage

TBD

Documentation

See Finch API docs