-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 973 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": "idoit/zenkit-api-client",
"type": "library",
"description": "A PHP API client library for Zenkit.",
"keywords": [
"API",
"Zenkit"
],
"homepage": "https://github.com/leonardfischer/zenkit-api-client",
"license": "MIT",
"authors": [
{
"name": "Leonard Fischer",
"email": "[email protected]",
"homepage": "https://www.i-doit.com",
"role": "Developer"
}
],
"config": {
"sort-packages": true
},
"suggest": {
"monolog/monolog": "For logging API requests and responses and also the mapping process."
},
"support": {},
"require": {
"php": ">=7.1",
"ext-json": "*",
"guzzlehttp/guzzle": "^5.3|^6.2|^7.0",
"netresearch/jsonmapper": "^2.0|^3.0|^4.0",
"psr/log": "^1.1"
},
"autoload": {
"psr-4": {
"idoit\\zenkit\\": "src/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpro/grumphp-shim": "^1.3",
"psalm/phar": "^4.7"
}
}