forked from intuit/PHP-Payments-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 683 Bytes
/
Copy pathcomposer.json
File metadata and controls
31 lines (31 loc) · 683 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": "quickbooks/payments-sdk",
"description": "The Official PHP SDK for QuickBooks Online Payments API",
"type": "library",
"keywords": ["api", "http", "rest", "quickbooks payments", "smallbusiness"],
"license": "Apache-2.0",
"homepage": "http://developer.intuit.com",
"authors": [
{
"name": "hlu2",
"email": "Hao_Lu@intuit.com"
}
],
"autoload": {
"psr-4": {
"QuickBooksOnline\\Payments\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"QuickBooksOnline\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^8"
},
"require": {
"guzzlehttp/guzzle": "^6.3",
"psr/log": "^1.0.1"
}
}