Download the PHP package caashapp/plaid-sdk-laravel without Composer
On this page you can find all versions of the php package caashapp/plaid-sdk-laravel. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download caashapp/plaid-sdk-laravel
More information about caashapp/plaid-sdk-laravel
Files in caashapp/plaid-sdk-laravel
Package plaid-sdk-laravel
Short Description Laravel implementation of Plaid's API as an SDK.
License MIT
Informations about the package plaid-sdk-laravel
Report a Bug
ยท
Request a Feature
ยท
Ask a Question
Table of Contents
- [Introduction](#introduction) - [Installation & Setup](#installation--setup) - [Configuration](#configuration) - [Usage](#usage) - [Structured Responses](#structured-responses) - [Sandbox Environment](#sandbox-environment) - [Roadmap](#roadmap) - [Support](#support) - [Project assistance](#project-assistance) - [Contributing](#contributing) - [Authors & contributors](#authors--contributors) - [Security](#security) - [License](#license)Introduction
Plaid sdk for Laravel is built to make harnessing the power of Plaid into your Laravel application as simple as possible. The library maps the Plaid API into a series of methods all bundled into a convenient Facade for rapid development and easy testing. Each method returns a structured object, so you don't need to go hunting through documentation, just let code completion guide you through.
Inspriation
Plaid sdk for Laravel is inspired by TomorrowIdeas/plaid-sdk-php which I started using in a project, but found it wasn't well integrated with Laravel, and I thought I could do something better. If you just need a PHP implementation of the Plaid API, go check it out.
Installation & Setup
Require this package with composer. Laravel uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider.
Configuration
The defaults are set in config/plaid.php
. Copy this file to your own config directory
to modify the values. You can publish the config using this command:
Before using Plaid sdk for Laravel, you will also need to add credentials for the
Plaid service and set the environment. These credentials should be placed in your
.env file, which will then be mapped into the config\plaid.php
file.
the config/plaid.php
file also contains the configuration for the list of products
you want to use, the countries your app should pull institutions from and the
default language. The default configuration should be good to go for testing in
the sandbox environment but be sure to review these settings, and the Plaid API
documentation prior to moving your application to production.
Usage
You may interact with the Plaid AIP using the Plaid facade.
Structured Responses
Each method returns a complex object, containing a fully typed and annotated structure. So if you use an IDE that provides code completion, you'll spend a lot less time hunting through documentation for the properties you want.
Sandbox Environment
When in the sandbox environment, Plaid provides a few extra helper API which are also exposed via the Plaid facade
Roadmap
This library is not complete, many of Plaids products are not yet implemented. You can create links, get bank accounts, balances and transactions today. More will be added to the library and pushed out as a complete product category at once.
The priority for now is transactions and balances, including a full test suit.
See the open issues for a list of proposed features (and known issues).
- Top Feature Requests (Add your votes using the ๐ reaction)
- Top Bugs (Add your votes using the ๐ reaction)
- Newest Bugs
Support
Reach out to the maintainer at one of the following places:
- GitHub Discussions
- Contact options listed on this GitHub profile
Project assistance
If you want to say thank you or/and support active development of Plaid sdk for Laravel:
- Add a GitHub Star to the project.
- Tweet about the Plaid sdk for Laravel.
- Write interesting articles about the project on Dev.to, Medium or your personal blog.
Together, we can make Plaid sdk for Laravel better!
Contributing
First off, thanks for taking the time to contribute! Contributions are what make the open-source community such an amazing place to learn, inspire, and create. Any contributions you make will benefit everybody else and are greatly appreciated.
Please read our contribution guidelines, and thank you for being involved!
Authors & contributors
The original setup of this repository is by Kyle Klaus.
For a full list of all authors and contributors, see the contributors page.
Security
Plaid sdk for Laravel follows good practices of security, but 100% security cannot be assured. Plaid sdk for Laravel is provided "as is" without any warranty. Use at your own risk.
For more information and to report security issues, please refer to our security documentation.
License
This project is licensed under the MIT license.
See LICENSE for more information.
All versions of plaid-sdk-laravel with dependencies
spatie/data-transfer-object Version ^3.7
illuminate/http Version ^8.79
illuminate/support Version ^8.79