-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 839 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 839 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
{
"name": "krystalcode/acumatica-api",
"type": "library",
"description": "Provides an SDK for integrating with the Acumatica REST APIs.",
"keywords": ["Acumatica"],
"homepage": "https://github.com/krystalcode/php-acumatica-api",
"license": "MIT",
"authors": [
{
"name": "krystalcode",
"homepage": "https://github.com/krystalcode"
}
],
"support": {
"issues": "https://github.com/krystalcode/php-acumatica-api/issues",
"source": "https://github.com/krystalcode/php-acumatica-api"
},
"require": {
"php": "^8.0",
"guzzlehttp/guzzle": "^6.0 || ^7.0",
"krystalcode/api-iterator": "^1.1",
"league/oauth2-client": "^2.0"
},
"autoload": {
"psr-4": { "KrystalCode\\Acumatica\\Api\\": "src/" }
}
}