This repository has been archived by the owner on Feb 16, 2023. It is now read-only.
forked from commercetools/commercetools-php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
101 lines (101 loc) · 2.92 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "commercetools/php-sdk",
"license": "MIT",
"type": "project",
"description": "The commercetools PHP SDK \n The official PHP Interface to the commercetools eCommerce API",
"homepage": "https://github.com/commercetools/commercetools-php-sdk",
"support": {
"email": "[email protected]",
"forum": "http://support.sphere.io",
"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/",
"tests/integration/"
],
"Commercetools\\Core\\Fixtures\\": [
"tests/fixtures/"
]
}
},
"require": {
"php": ">=5.6",
"psr/log": "^1.0",
"guzzlehttp/guzzle": "^6.0 || ^5.3.3",
"guzzlehttp/psr7": "^1.1",
"psr/cache": "^1.0",
"psr/simple-cache": "^1.0",
"cache/apcu-adapter": "^1.0 || ^0.3 || ^0.2",
"paragonie/random_compat": "^2.0 || ^1.0",
"ext-intl": "*"
},
"require-dev": {
"guzzlehttp/guzzle": "^6.0",
"phpunit/phpunit": "^6.0 || ^5.7.21",
"squizlabs/php_codesniffer": "^3.2",
"doctrine/cache": "^1.6",
"monolog/monolog": "^1.12",
"behat/behat": "^3.0",
"symfony/yaml": "^3.2",
"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",
"incenteev/composer-parameter-handler": "^2.1",
"commercetools/commercetools-api-reference": "dev-master"
},
"replaces": {
"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"
},
"scripts": {
"updateConfig": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
],
"post-update-cmd": "@updateConfig",
"post-install-cmd": "@updateConfig"
},
"extra": {
"branch-alias": {
"dev-develop": "2.6-dev"
},
"incenteev-parameters": [
{
"file": "docroot/myapp.yml",
"env-map": {
"client_id": "COMMERCETOOLS_CLIENT_ID",
"client_secret": "COMMERCETOOLS_CLIENT_SECRET",
"project": "COMMERCETOOLS_PROJECT"
}
},
{
"file": "tests/myapp.yml",
"env-map": {
"client_id": "COMMERCETOOLS_CLIENT_ID",
"client_secret": "COMMERCETOOLS_CLIENT_SECRET",
"project": "COMMERCETOOLS_PROJECT",
"oauth_url": "COMMERCETOOLS_OAUTH_URL",
"api_url": "COMMERCETOOLS_API_URL"
}
}
]
}
}