-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
57 lines (57 loc) · 1.24 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": "leonid74/wildberries-api-php",
"type": "library",
"description": "Wildberries REST API statistics client library with throttling requests",
"keywords": [
"Wildberries",
"WB",
"rest",
"api",
"sdk",
"client",
"stat",
"statistics"
],
"homepage": "https://github.com/leonid74/wildberries-api-php",
"license": "BSD-3-Clause",
"authors": [
{
"name": "leonid74",
"homepage": "https://github.com/leonid74/",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"ext-curl": "*",
"ext-json": "*",
"josantonius/httpstatuscode": "^1.1.6"
},
"require-dev": {
"automattic/phpcs-neutron-standard": "^1.7",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"Leonid74\\Wildberries\\": "src/"
}
},
"scripts": {
"post-update-cmd": [
"@composer dump-autoload"
],
"check-code": [
"phpcs -sp src/ tests/"
],
"tests": [
"@php vendor/bin/phpunit tests"
]
},
"config": {
"process-timeout": 0,
"sort-packages": true,
"optimize-autoloader": true
}
}