-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.1 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.1 KB
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
44
45
46
{
"name": "synerise/php-sdk",
"description": "SDK allowing basic integration with Synerise API",
"type": "library",
"require": {
"php": "^8.0 || ^7.4",
"ext-json": "*",
"anik/loguzz": "^2.2 || ^4.0",
"microsoft/kiota-abstractions": "^1.4",
"microsoft/kiota-http-guzzle": "^1.5",
"microsoft/kiota-serialization-json": "^1.5",
"microsoft/kiota-serialization-text": "^1.5",
"psr/cache": "^1.0 || ^2.0 || ^3.0",
"psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5"
},
"suggest": {
"mobiledetect/mobiledetectlib": "Used by default source provider.",
"symfony/cache": "Recommended PSR cache implementation for token caching"
},
"autoload": {
"psr-4": {
"Synerise\\Api\\": "lib/",
"Synerise\\Sdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Synerise\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Synerise",
"email": "developer@synerise.com"
}
],
"config": {
"allow-plugins": {
"php-http/discovery": true,
"tbachert/spi": true
}
}
}