getclair / phinch-laravel
Laravel package for Finch API SDK
v1.1
2023-06-30 19:10 UTC
Requires
- php: ^8.1
- ext-json: *
- getclair/phinch: ^0.1.3
- illuminate/support: ^9.0|^10.0
Requires (Dev)
- nunomaduro/collision: ^5.1
- orchestra/testbench: ^5.0|^6.0
- phpunit/phpunit: ^8.0|^9.0
README
A Laravel wrapper for the Finch API SDK
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