-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 942 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 942 Bytes
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
{
"name": "gboudreau/ws-api-php",
"type": "library",
"description": "This library allows you to access your own account using the Wealthsimple (GraphQL) API using PHP.",
"keywords": ["wealthsimple"],
"homepage": "https://github.com/gboudreau/ws-api-php",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Guillaume Boudreau",
"email": "guillaume@pommepause.com",
"homepage": "https://www.pommepause.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/gboudreau/ws-api-php/issues",
"source": "https://github.com/gboudreau/ws-api-php",
"docs": "https://github.com/gboudreau/ws-api-php"
},
"require": {
"php": ">=7.4",
"ext-curl": "*",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"PPFinances\\Wealthsimple\\": "src/"
}
}
}