-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
52 lines (52 loc) · 1.34 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
42
43
44
45
46
47
48
49
50
51
52
{
"name": "vanta/esia-gateway-client",
"description": "Pure client for ESIA gateway",
"license": "MIT",
"authors": [
{
"name": "Valentin Nazarov",
"email": "v.nazarov@pos-credit.ru"
},
{
"name": "Vlad Shashkov",
"email": "v.shashkov@pos-credit.ru"
},
{
"name": "Vanta Team",
"homepage": "https://vanta.ru"
}
],
"keywords": [
"esia",
"esia-gateway"
],
"autoload": {
"psr-4": {
"Vanta\\Integration\\EsiaGateway\\": "src/"
}
},
"require": {
"php": "^8.2",
"yiisoft/http": "^1.2",
"psr/http-client": "^1.0",
"guzzlehttp/psr7": "^2.0",
"symfony/serializer": "^6.4|^7.0",
"symfony/property-access": "^6.4|^7.0",
"phpstan/phpdoc-parser": "^1.0",
"phpdocumentor/reflection-docblock": "^5.0",
"psr/http-client-implementation": "^1.0",
"vanta/esia-struct": "^0.1"
},
"require-dev": {
"symfony/var-dumper": "^6.4|^7.0",
"friendsofphp/php-cs-fixer": "^3.17",
"guzzlehttp/guzzle": "^7.7",
"symfony/http-client": "5.4|^6.0",
"phpstan/phpstan": "^1.10"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}