forked from cdek-it/sdk2.0
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
81 lines (81 loc) · 2.04 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
{
"name": "ttatpuot/cdek-sdk2.0",
"type": "library",
"description": "Рабочий и поддерживаемый PHP SDK для API v2.0 СДЭК",
"keywords": [
"CDEK",
"sdk",
"delivery",
"СДЭК",
"служба доставки",
"v2.0"
],
"homepage": "https://www.cdek.ru/clients/integrator.html",
"license": "MIT",
"authors": [
{
"name": "Viktor Chizhekov",
"homepage": "https://github.com/ihomyak",
"role": "Creator"
},
{
"name": "Anton Neverov",
"homepage": "https://github.com/TTATPuOT",
"role": "Contributor"
}
],
"require": {
"php": "^7.1 || ^8.0",
"ext-json": "*",
"jms/serializer": "^3 <3.30",
"nyholm/psr7": "^1.2",
"psr/http-client": "^1.0",
"rakit/validation": "^1.1",
"doctrine/annotations": "^1.14.3"
},
"conflict": {},
"require-dev": {
"phan/phan": "^1 <1.3 || >1.3.0",
"php-coveralls/php-coveralls": "^2.1",
"php-http/mock-client": "^1.3",
"phpmd/phpmd": "^2.7",
"phpstan/phpstan": ">=0.10",
"phpunit/phpunit": "^8.5 || ^9.3",
"squizlabs/php_codesniffer": "*",
"symfony/http-client": "^5.4.22",
"vimeo/psalm": ">=3.0.16"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"extra": {
"branch-alias": {
"dev-master": "v0.0.1-dev"
}
},
"autoload": {
"psr-4": {
"CdekSDK2\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CdekSDK2\\Tests\\": "tests/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit --colors=always",
"check-style": "./vendor/bin/phpcs --standard=PSR12 src/ tests/",
"fix-style": "./vendor/bin/phpcbf --standard=PSR12 src/ tests/",
"phan": "./vendor/bin/phan",
"phpstan": "./vendor/bin/phpstan analyse src --level max --no-progress -vvv",
"psalm": "./vendor/bin/psalm -c=psalm.xml"
},
"support": {
"issues": "https://github.com/ttatpuot/cdek-sdk2.0/issues",
"docs": "https://github.com/ttatpuot/cdek-sdk2.0/blob/master/README.md"
}
}