forked from intuit/QuickBooks-V3-PHP-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.02 KB
/
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
40
{
"name": "quickbooks/v3-php-sdk",
"description": "The Official PHP SDK for QuickBooks Online Accounting API",
"type": "library",
"keywords": ["api", "http", "rest", "quickbooks", "smallbusiness"],
"homepage": "http://developer.intuit.com",
"require": {
"php": ">=5.6.0",
"ext-mbstring": "*",
"ext-dom": "*"
},
"require-dev": {
"phpunit/phpunit": "^5.0 || ^6.0 || ^7.0"
},
"autoload": {
"psr-4": {
"QuickBooksOnline\\API\\": "src/"
}
},
"license": "Apache-2.0",
"authors": [
{
"name": "bsivalingam",
"email": "brinda_sivalingam@intuit.com"
}
],
"suggest": {
"ext-curl": "Uses Curl to make HTTP Requests",
"guzzlehttp/guzzle": "Uses Guzzle to make HTTP Requests"
},
"archive": {
"exclude": [
"/docs",
"/src/Utility.Test",
"/src/XSD2PHP/docs",
"/src/XSD2PHP/test",
"/test"
]
}
}