-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1000 Bytes
/
composer.json
File metadata and controls
42 lines (42 loc) · 1000 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
32
33
34
35
36
37
38
39
40
41
42
{
"name": "activecollab/qbo-wrapper",
"description": "Quickbooks online API wrapper",
"license": "MIT",
"require": {
"php": ">=8.0",
"quickbooks/v3-php-sdk": "6.1.2",
"league/oauth1-client": "^v1.11.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.6.20",
"guzzlehttp/guzzle": "^7.0.0"
},
"keywords": [
"oauth",
"oauth1",
"quickbooks",
"entity",
"query response"
],
"authors": [
{
"name": "Petar Slavnic",
"email": "petarslavnic@gmail.com",
"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
}