-
Notifications
You must be signed in to change notification settings - Fork 38
/
composer.json
executable file
·62 lines (62 loc) · 1.6 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
{
"name": "gam6itko/ozon-seller",
"description": "Ozon Seller Api for transhore sales",
"keywords": ["ozon", "marketplace", "api", "russia", "seller", "crossborder"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Alexander Strizhak",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Gam6itko\\OzonSeller\\": "src"
}
},
"require": {
"php": ">=7.1",
"ext-json": "*",
"psr/http-client": "^1.0"
},
"suggest": {
"php-http/guzzle6-adapter": "For use not with Symfony",
"symfony/http-client": "For use with Symfony",
"nyholm/psr7": "For use with Symfony"
},
"autoload-dev": {
"psr-4": {
"Gam6itko\\OzonSeller\\Tests\\": "tests"
}
},
"require-dev": {
"ext-curl": "*",
"dg/bypass-finals": "^1.2",
"friendsofphp/php-cs-fixer": "^3.0",
"guzzlehttp/psr7": "^1.6",
"http-interop/http-factory-guzzle": "^1.0",
"nyholm/psr7": "^1.3",
"php-http/guzzle6-adapter": "^2.0",
"phpunit/phpunit": "^7.4||^8.0||^9.0",
"symfony/http-client": "^4.1||^5.1",
"vimeo/psalm": "^4.0||^5.13",
"vlucas/phpdotenv": "^5.3"
},
"bin": [
"bin/is_realized.php"
],
"extra": {
"branch-alias": {
"dev-master": "0.9.x-dev"
}
},
"scripts": {
"csfix": "php-cs-fixer fix",
"psalm": "psalm --no-cache",
"tests": "phpunit"
},
"config": {
"sort-packages": true
}
}