-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
41 lines (41 loc) · 989 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
{
"name": "lamoda/atol-client",
"description": "ATOL API v3/v4/v5 client for php",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Pavel Agaletskiy",
"email": "pavel.agaletskiy@lamoda.ru"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.4",
"jms/serializer": "^3.4",
"symfony/validator": "^4.0 || ^5.0",
"guzzlehttp/guzzle": "^6.3 || ^7.5",
"paillechat/php-enum": "~1.1.0",
"doctrine/annotations": "^1.7",
"doctrine/cache": "^1.6"
},
"require-dev": {
"phpunit/phpunit": "^7.5.15",
"friendsofphp/php-cs-fixer": "^2.11"
},
"autoload": {
"psr-4": {
"Lamoda\\AtolClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lamoda\\AtolClient\\Tests\\": "tests/"
}
},
"config": {
"platform": {
"php": "7.4"
}
}
}