Plaid SDK for PHP 使用教程
plaid-sdk-phpPHP bindings for the Plaid API项目地址:https://gitcode.com/gh_mirrors/pl/plaid-sdk-php
1. 项目的目录结构及介绍
plaid-sdk-php/
├── src/
│ ├── Entities/
│ ├── Exceptions/
│ ├── Resources/
│ └── Plaid.php
├── tests/
├── .editorconfig
├── .gitignore
├── .travis.yml
├── LICENSE
├── Makefile
├── README.md
├── composer.json
├── phpunit.xml
├── psalm.xml
- src/: 包含 SDK 的核心代码,包括实体类、异常类、资源类和主入口文件
Plaid.php
。 - tests/: 包含 SDK 的测试代码。
- .editorconfig: 编辑器配置文件。
- .gitignore: Git 忽略文件配置。
- .travis.yml: Travis CI 配置文件。
- LICENSE: 项目许可证文件。
- Makefile: 用于构建项目的 Makefile。
- README.md: 项目说明文档。
- composer.json: Composer 依赖管理文件。
- phpunit.xml: PHPUnit 测试配置文件。
- psalm.xml: Psalm 静态分析配置文件。
2. 项目的启动文件介绍
项目的启动文件是 src/Plaid.php
。这个文件是 SDK 的主入口,负责初始化和配置 Plaid 客户端。
namespace TomorrowIdeas\Plaid;
class Plaid
{
// 代码省略
}
3. 项目的配置文件介绍
项目的配置文件主要是 composer.json
和 src/Plaid.php
。
composer.json
composer.json
文件定义了项目的依赖和其他配置信息。
{
"name": "tomorrow-ideas/plaid-sdk-php",
"description": "PHP bindings for the Plaid API",
"require": {
"php": ">=7.3",
"ext-curl": "*",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"TomorrowIdeas\\Plaid\\": "src/"
}
}
}
src/Plaid.php
src/Plaid.php
文件中包含了 Plaid 客户端的配置和初始化代码。
$client = new \TomorrowIdeas\Plaid\Plaid("your-client-id", "your-secret", "environment");
通过以上配置,可以初始化 Plaid 客户端并开始使用 Plaid API。
plaid-sdk-phpPHP bindings for the Plaid API项目地址:https://gitcode.com/gh_mirrors/pl/plaid-sdk-php