-
Notifications
You must be signed in to change notification settings - Fork 248
/
composer.json
43 lines (43 loc) · 1.14 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
41
42
43
{
"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": "*",
"guzzlehttp/guzzle": "^7.9"
},
"require-dev": {
"phpunit/phpunit": "^5.0 || ^6.0 || ^7.0 || ^8",
"php-mock/php-mock-phpunit": "^2.6",
"php-mock/php-mock": "^2.3"
},
"autoload": {
"psr-4": {
"QuickBooksOnline\\API\\": "src/"
}
},
"license": "Apache-2.0",
"authors": [
{
"name": "abisalehalliprasan",
"email": "[email protected]"
}
],
"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"
]
}
}