-
Notifications
You must be signed in to change notification settings - Fork 33
/
composer.json
43 lines (43 loc) · 964 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
43
{
"name": "intacct/intacct-sdk-php",
"description": "Sage Intacct SDK for PHP",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Sage Intacct, Inc.",
"homepage": "https://developer.intacct.com"
}
],
"require": {
"php": ">=8.0",
"ext-dom": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-simplexml": "*",
"ext-xmlwriter": "*",
"guzzlehttp/guzzle": "^7.2.0",
"ramsey/uuid": "^4.1.1",
"psr/log": "^2.0 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.0",
"monolog/monolog": "^2.2.0",
"mikey179/vfsstream": "^1.6.8",
"phpmd/phpmd": "^2.9.1",
"squizlabs/php_codesniffer": "^3.5.8"
},
"suggest": {
"monolog/monolog": "Allows more advanced logging of the application flow"
},
"autoload": {
"psr-4": {
"Intacct\\": "src/Intacct/"
}
},
"autoload-dev": {
"psr-4": {
"Intacct\\Tests\\": "test/Intacct/"
}
}
}