-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
74 lines (74 loc) · 1.91 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
{
"name": "commercetools/commercetools-sdk",
"license": "MIT",
"type": "library",
"description": "The official PHP SDK for the commercetools Composable Commerce APIs",
"autoload": {
"psr-4": {
"Commercetools\\Api\\": [
"lib/commercetools-api/src/"
],
"Commercetools\\Import\\": [
"lib/commercetools-import/src/"
],
"Commercetools\\History\\": [
"lib/commercetools-history/src/"
],
"Commercetools\\": [
"src/",
"lib/commercetools-base/src/"
]
}
},
"autoload-dev": {
"psr-4": {
"Commercetools\\Api\\Test\\": [
"lib/commercetools-api-tests/test/unit/"
],
"Commercetools\\Import\\Test\\": [
"lib/commercetools-import-tests/test/unit/"
],
"Commercetools\\History\\Test\\": [
"lib/commercetools-history-tests/test/unit/"
],
"Commercetools\\Test\\": [
"lib/commercetools-base/test/unit/"
],
"Commercetools\\UnitTest\\": [
"test/unit/"
],
"Commercetools\\IntegrationTest\\": [
"test/integration/"
],
"Commercetools\\Tools\\": [
"tools"
]
}
},
"require": {
"php": ">=7.2",
"ext-json": "*",
"guzzlehttp/psr7": "^1.7 || ^2.0.0",
"guzzlehttp/guzzle": "^6.0 || ^7.0",
"psr/cache": "^1.0 || ^2.0 || 3.0",
"psr/simple-cache": "^1.0 || ^2.0 || 3.0",
"psr/log": "^1.0 || ^2.0 || 3.0",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0 || ^2.0",
"ramsey/uuid": "^4.0",
"symfony/cache": "^3.0 || ^4.0 || ^5.0 || ^6.0"
},
"require-dev": {
"commercetools/php-sdk": "^2.16",
"vimeo/psalm": "^4.26",
"monolog/monolog": "^1.3 || ^2.0",
"phpunit/phpunit": "^9.0 | 8.5.22",
"cache/array-adapter": "^1.0",
"symplify/easy-coding-standard": "12.0.7"
},
"config": {
"allow-plugins": {
"ocramius/package-versions": true
}
}
}