-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
57 lines (57 loc) · 1.33 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
53
54
55
56
57
{
"name": "shoman4eg/moy-nalog",
"description": "An unofficial wrapper client for lknpd.nalog.ru API",
"license": "MIT",
"type": "library",
"keywords": [
"api",
"nalog.ru"
],
"authors": [
{
"name": "Artem Dubinin",
"email": "artem@dubinin.me"
}
],
"funding": [
{
"type": "other",
"url": "https://www.tinkoff.ru/cf/7rZnC7N4bOO"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"ext-mbstring": "*",
"brick/math": "^0.9",
"php-http/client-common": "^2.7",
"php-http/discovery": "^1.18",
"psr/http-client": "^1.0.1",
"webmozart/assert": "^1.6"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.4.5",
"guzzlehttp/psr7": "^2.5",
"nyholm/nsa": "^1.3",
"php-http/guzzle7-adapter": "^1.0",
"phpunit/phpunit": "^9.5"
},
"suggest": {
"psr/http-client-implementation": "Required for using this package"
},
"autoload": {
"psr-4": {
"Shoman4eg\\Nalog\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Shoman4eg\\Nalog\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}