This repository has been archived by the owner on Oct 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
76 lines (76 loc) · 2.39 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
{
"name": "commercetools/php-sdk",
"license": "MIT",
"type": "project",
"description": "This Composable Commerce PHP SDK is deprecated effective 1st September 2022. We recommend you to use our new SDK here https://docs.commercetools.com/sdk/php-sdk#php-sdk-v2.",
"homepage": "https://github.com/commercetools/commercetools-php-sdk",
"support": {
"email": "[email protected]",
"forum": "https://support.commercetools.com",
"issues": "https://github.com/commercetools/commercetools-php-sdk/issues",
"docs": "http://commercetools.github.io/commercetools-php-sdk/docs/master/"
},
"autoload": {
"psr-4": {
"Commercetools\\Core\\": "src/Core/",
"Commercetools\\Commons\\": "src/Commons/"
}
},
"autoload-dev": {
"psr-4": {
"Commercetools\\Core\\": [
"tests/unit/"
],
"Commercetools\\Core\\IntegrationTests\\": [
"tests/integration/"
],
"Commercetools\\Core\\Fixtures\\": [
"tests/fixtures/"
]
}
},
"require": {
"php": ">=5.6",
"psr/log": "^1.0 || ^2.0",
"guzzlehttp/guzzle": "^7.0 || ^6.0 || ^5.3.3 ",
"guzzlehttp/psr7": "^1.7 || ^2.0",
"psr/cache": "^1.0 || ^2.0 || ^3.0",
"psr/simple-cache": "^1.0",
"cache/apcu-adapter": "^1.0 || ^0.3 || ^0.2",
"paragonie/random_compat": "^2.0 || ^1.0 || ^9.99",
"ext-intl": "*"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.0 || ^6.0",
"phpunit/phpunit": "9.5.10",
"phpspec/prophecy-phpunit": "^2.0",
"symplify/easy-coding-standard": "10.0.2",
"doctrine/cache": "^1.6 || ^2.0",
"monolog/monolog": "^1.12 || ^2.0",
"symfony/yaml": "^4.0 || ^3.4.38 || ^5.0",
"symfony/stopwatch": "^4.0 || ^3.4.38 || ^5.0",
"cache/adapter-common": "^1.0",
"cache/apcu-adapter": "^1.0",
"cache/array-adapter": "^1.0",
"cache/doctrine-adapter": "^1.0",
"cache/redis-adapter": "^1.0",
"cache/filesystem-adapter": "^1.0",
"cache/void-adapter": "^1.0",
"commercetools/commercetools-api-reference": "dev-main"
},
"replace": {
"commercetools/commons": "*"
},
"bin": [
"bin/ctp-tlscheck.php"
],
"suggest": {
"cache/redis-adapter": "For usage of a redis server to store the client access token",
"cache/doctrine-adapter": "For usage of a doctrine cache instance to store the client access token"
},
"extra": {
"branch-alias": {
"dev-develop": "2.8-dev"
}
}
}