-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
25 lines (25 loc) · 766 Bytes
/
composer.json
File metadata and controls
25 lines (25 loc) · 766 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
{
"name": "krystalcode/api-iterator",
"type": "library",
"description": "An iterator for browsing paged resources such as items served over API calls.",
"keywords": ["API", "iterator"],
"homepage": "https://github.com/krystalcode/php-api-iterator",
"license": "MIT",
"authors": [
{
"name": "krystalcode",
"homepage": "https://github.com/krystalcode"
}
],
"support": {
"issues": "https://github.com/krystalcode/php-api-iterator/issues",
"source": "https://github.com/krystalcode/php-acumatica-api"
},
"require": {
"php": "^7.3 || ^8.0"
},
"autoload": {
"psr-4": { "KrystalCode\\ApiIterator\\": "src/" }
},
"minimum-stability": "dev"
}