-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
42 lines (42 loc) · 991 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
40
41
42
{
"name": "activecollab/qbo-wrapper",
"description": "Quickbooks online API wrapper",
"license": "MIT",
"require": {
"php": ">=7.1",
"quickbooks/v3-php-sdk": "^5.0",
"league/oauth1-client": "1.6.*",
"guzzle/guzzle": "3.8.*",
"ext-json": "^1.5"
},
"require-dev": {
"phpunit/phpunit": "^5.0"
},
"keywords": [
"oauth",
"oauth1",
"quickbooks",
"entity",
"query response"
],
"authors": [
{
"name": "Petar Slavnic",
"email": "[email protected]",
"homepage": "http://www.activecollab.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"ActiveCollab\\Quickbooks\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ActiveCollab\\Quickbooks\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true
}