This repository has been archived by the owner on Apr 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
98 lines (98 loc) · 2.9 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "sanmai/cdek-sdk",
"type": "library",
"description": "СДЭК PHP SDK, библиотека для работы с API СДЭК",
"keywords": [
"CDEK",
"sdk",
"delivery",
"СДЭК",
"служба доставки"
],
"homepage": "https://cdek-sdk.readthedocs.io/",
"license": "MIT",
"authors": [
{
"name": "Roman Sokharev",
"homepage": "https://github.com/greabock",
"role": "Creator"
},
{
"name": "JhaoDa",
"homepage": "https://github.com/jhaoda",
"role": "Developer"
},
{
"name": "Alexey Kopytko",
"email": "[email protected]",
"homepage": "https://www.alexeykopytko.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"ext-SimpleXML": "*",
"ext-json": "*",
"ext-libxml": "*",
"guzzlehttp/guzzle": "^6.3 || ^7.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"sanmai/cdek-sdk-serializer": "^0.2.6",
"sanmai/pipeline": "^5.0"
},
"conflict": {
"psr/http-message": ">=2"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.9 <2.10 || ^2.0",
"friendsofphp/php-cs-fixer": ">=2",
"gamez/psr-testlogger": ">=3.0",
"illuminate/support": ">=5.2",
"infection/infection": ">=0.18",
"laravel/framework": ">=5.2 <9",
"orchestra/testbench": ">=3",
"phan/phan": "^1 <1.3 || >1.3.0",
"php-coveralls/php-coveralls": ">=2.1",
"phpstan/phpstan": ">=0.10",
"phpunit/phpunit": "^9.4",
"sanmai/phpunit-legacy-adapter": "^6 || ^8",
"vimeo/psalm": ">=3.0.16",
"vkcom/noverify": "^0.5.2"
},
"suggest": {
"ext-ctype": "For flexible attribute name handling",
"hughgrigg/php-business-time": "Finds next working day, helps with delivery estimates",
"monolog/monolog": "For advanced logging and debugging",
"sanmai/cdek-info": "For related constant enumerations and references",
"sanmai/hoa-protocol": "If you have trouble with a conflicting resolve()",
"sanmai/pindx": "For postal code validation"
},
"config": {
"sort-packages": true,
"allow-plugins": true
},
"extra": {
"branch-alias": {
"dev-master": "v0.7.x-dev"
},
"laravel": {
"providers": [
"CdekSDK\\LaravelCdekServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"CdekSDK\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\CdekSDK\\": "tests/"
}
},
"support": {
"issues": "https://github.com/sanmai/cdek-sdk/issues",
"chat": "https://t.me/phpcdeksdk",
"docs": "https://cdek-sdk.readthedocs.io/"
}
}