forked from commercetools/commercetools-php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
87 lines (87 loc) · 2.41 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
{
"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/"
}
},
"autoload-dev": {
"psr-4": {
"Commercetools\\Core\\": [
"tests/unit/",
"tests/integration/"
]
}
},
"require": {
"php": ">=5.4",
"psr/log": "^1.0",
"guzzlehttp/guzzle": "^5.0 || ^6.0",
"guzzlehttp/psr7": "^1.1",
"pimple/pimple": "^3.0",
"psr/cache": "^1.0",
"ext-intl": "*",
"ext-mbstring": "*"
},
"require-dev": {
"guzzlehttp/guzzle": "^6.0",
"phpunit/phpunit": "^5.0 || ^4.8",
"phpmd/phpmd": "@stable",
"squizlabs/php_codesniffer": "^2.6",
"sebastian/phpcpd": "@stable",
"pdepend/pdepend": "@stable",
"phploc/phploc": "^2.0",
"mayflower/php-codebrowser": "^1.0",
"doctrine/cache": "^1.5",
"monolog/monolog": "^1.12",
"behat/behat": "^3.0",
"phpunit/phpcov": "*",
"friendsofphp/php-cs-fixer": "@stable",
"symfony/yaml": "*",
"cache/array-adapter": "^0.4.0",
"cache/filesystem-adapter": "^0.3.0",
"incenteev/composer-parameter-handler": "^2.1"
},
"scripts": {
"updateConfig": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
],
"post-update-cmd": "@updateConfig",
"post-install-cmd": "@updateConfig"
},
"extra": {
"branch-alias": {
"dev-develop": "1.5-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"
}
}
]
}
}