forked from magento/ece-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·104 lines (104 loc) · 2.58 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
102
103
104
{
"name": "magento/ece-tools",
"description": "Provides tools to build and deploy Magento 2 Enterprise Edition",
"type": "magento2-component",
"version": "2002.0.18",
"license": "OSL-3.0",
"require": {
"php": "^7.0",
"ext-PDO": "*",
"ext-json": "*",
"composer/composer": "@stable",
"composer/semver": "^1.4",
"graylog2/gelf-php": "^1.4.2",
"guzzlehttp/guzzle": "^6.2",
"illuminate/config": "^5.5",
"illuminate/container": "^5.5",
"illuminate/contracts": "^5.5",
"monolog/monolog": "^1.16",
"psr/container": "^1.0",
"psr/log": "^1.0",
"symfony/console": "^2.6||^4.0",
"symfony/yaml": "^3.3",
"symfony/process": "~2.1||~4.1.0",
"twig/twig": "^1.0||^2.0"
},
"require-dev": {
"php-mock/php-mock-phpunit": "^2.0",
"phpmd/phpmd": "@stable",
"phpunit/php-code-coverage": "^5.2",
"phpunit/phpunit": "^6.2",
"squizlabs/php_codesniffer": " ^3.0",
"codeception/codeception": "^2.5.3",
"consolidation/robo": "^1.2"
},
"replace": {
"magento/ece-patches": "*",
"magento/magento-cloud-configuration": "*"
},
"bin": [
"bin/ece-tools",
"m2-ece-build",
"m2-ece-deploy",
"m2-ece-scd-dump"
],
"autoload": {
"psr-4": {
"Magento\\MagentoCloud\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Magento\\MagentoCloud\\Test\\": "tests/static/",
"Magento\\MagentoCloud\\Test\\Integration\\": "tests/integration/",
"Magento\\MagentoCloud\\Test\\Functional\\": "tests/functional/"
}
},
"scripts": {
"test": [
"phpcs src --standard=tests/static/phpcs-ruleset.xml -p -n",
"phpmd src xml tests/static/phpmd-ruleset.xml",
"phpunit --configuration tests/unit",
"phpunit --configuration tests/unit --coverage-clover tests/unit/tmp/clover.xml && php tests/unit/code-coverage.php tests/unit/tmp/clover.xml"
],
"test-coverage-generate": "phpunit --configuration tests/unit --coverage-html tests/unit/tmp/coverage"
},
"config": {
"sort-packages": true
},
"prefer-stable": true,
"extra": {
"map": [
[
"dist/.magento.env.yaml",
".magento.env.yaml.dist"
],
[
"dist/docker-sync.yml",
"docker-sync.yml"
],
[
"dist/docker/mnt",
".docker/mnt"
],
[
"dist/docker/tmp",
".docker/tmp"
],
[
"dist/docker/mysql",
".docker/mysql"
],
[
"dist/docker/bin/docker",
"bin/docker"
]
],
"chmod": [
{
"mask": "0755",
"path": "bin/docker"
}
]
}
}