PHPackages                             jameron/plaid - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. jameron/plaid

ActiveProject[API Development](/categories/api)

jameron/plaid
=============

Plaid API Wrapper

v9.0.1(3mo ago)0702↓78.6%MITPHP

Since Mar 7Pushed 3mo ago1 watchersCompare

[ Source](https://github.com/jameron/plaid)[ Packagist](https://packagist.org/packages/jameron/plaid)[ Docs](http://cjmacfarlane.com)[ RSS](/packages/jameron-plaid/feed)WikiDiscussions master Synced yesterday

READMEChangelog (1)DependenciesVersions (40)Used By (0)

Plaid SDK in PHP
================

[](#plaid-sdk-in-php)

This package has been built to work with Laravel. It is used for a personal project therefore it is missing a number of Plaid API endpoints. If you want to add more, please submit a pull request.

1. Add the package to your Laravel or Lumen project:

```
    composer require jameron/plaid
```

2. Update your .env file with the following variables:

```
PLAID_CLIENT_ID=
PLAID_SECRET=
PLAID_CLIENT_NAME=''
PLAID_WEBHOOK=''
```

3. Publish the config file:

```
    php artisan vendor:publish
```

\*\*NOTE Remaining steps are for Lumen only, Laravel handles the setup automatically.

4. Add the class alias to `bootstrap\app.php`

```
    if (!class_exists('Plaid')) {
        class_alias('Plaid\Plaid', 'Plaid');
    }
```

5. Create config file config/plaid.php

```
