-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.15 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.15 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
47
48
{
"name": "lamoda/crpt-ismp-api-client",
"description": "Client for CRPT ISMP system",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Lamoda developers",
"homepage": "https://tech.lamoda.ru/"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Lamoda\\IsmpClient\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"Lamoda\\IsmpClient\\Tests\\": "./tests/"
}
},
"require": {
"php": "^7.2 || ^8.0",
"doctrine/annotations": "^1.6",
"doctrine/cache": "^1.8",
"guzzlehttp/guzzle": "^6.3 || ^7.4",
"symfony/property-access": "^4.2 || ^5.0 || ^6.0",
"symfony/property-info": "^4.3 || ^5.0 || ^6.0",
"symfony/serializer": "^4.2.10 || ^5.0 || ^6.0"
},
"require-dev": {
"ext-json": "*",
"phpunit/phpunit": "^8.5"
},
"scripts": {
"test": "phpunit"
},
"config": {
"platform": {
"php": "7.2"
},
"preferred-install": {
"*": "dist"
},
"sort-packages": true
}
}