forked from consolibyte/quickbooks-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.31 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": "consolibyte/quickbooks",
"type": "library",
"description": "QuickBooks DevKit with support for Intuit Anywhere, Intuit Partner Platform, Web Connector, QuickBooks Merchant Services, and more.",
"keywords": ["quickbooks","intuit","intuit anywhere","intuit partner platform","quickbooks web connector","qbxml","intuit data services","quickbooks merchant services","intuit merchant services","web connector"],
"homepage": "http://www.consolibyte.com/",
"license": "EPL-1.0",
"authors": [
{
"name": "Keith Palmer",
"email": "[email protected]",
"homepage": "http://www.consolibyte.com/",
"role": "Developer"
}
],
"require": {
"php": ">=7.2.0",
"symfony/polyfill-php73": "^1.11",
"ramsey/uuid": "^3.8",
"ext-dom": "*",
"ext-json": "*",
"ext-SimpleXML": "*"
},
"autoload": {
"psr-4": {
"QuickBooksPhpDevKit\\": "src/QuickBooksPhpDevKit/"
}
},
"autoload-dev": {
"psr-4": {
"QuickBooksPhpDevKit_UnitTesting\\": "src/UnitTesting/"
}
},
"require-dev": {
"phpunit/phpunit": "^8",
"symfony/process": "^4.3",
"guzzlehttp/guzzle": "^6.3",
"squizlabs/php_codesniffer": "^3.5"
}
}