-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
41 lines (41 loc) · 1.01 KB
/
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
{
"name": "lamoda/crpt-oms-api-client",
"description": "Client for CRPT OMS system",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Lamoda developers",
"homepage": "https://tech.lamoda.ru/"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Lamoda\\OmsClient\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"Lamoda\\OmsClient\\Tests\\": "./tests/"
}
},
"require": {
"php": "^7.3 || ^8.0",
"doctrine/annotations": "^1.6",
"doctrine/cache": "^1.8",
"guzzlehttp/guzzle": "^6.3 || ^7.4",
"symfony/property-access": "^3.4 || ^4.0 || ^5.0 || ^6.0",
"symfony/serializer": "^3.4 || ^4.0 || ^5.0 || ^6.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.5.12 || ^9.0"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
}
}