forked from TomorrowIdeas/plaid-sdk-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 886 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "tomorrow-ideas/plaid-sdk-php",
"description": "PHP implementation of Plaid's API as an SDK.",
"keywords": [
"plaid",
"sdk",
"php"
],
"type": "library",
"require": {
"php": ">=7.3|>=8.0",
"ext-json": "*",
"ext-curl": "*",
"nimbly/shuttle": "^0.4"
},
"autoload": {
"psr-4": {
"TomorrowIdeas\\Plaid\\" : "src"
}
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"vimeo/psalm": "^4.0",
"symfony/var-dumper": "^4.2",
"php-coveralls/php-coveralls": "^2.1"
},
"autoload-dev": {
"psr-4": {
"TomorrowIdeas\\Plaid\\Tests\\": "tests"
}
},
"license": "MIT",
"authors": [
{
"name": "Brent Scheffler",
"email": "[email protected]"
}
]
}