forked from magento/ece-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·137 lines (137 loc) · 3.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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "magento/ece-tools",
"description": "Provides tools to build and deploy Magento 2 Enterprise Edition",
"type": "magento2-component",
"version": "2002.0.20",
"license": "OSL-3.0",
"repositories": {
"repo.magento.com": {
"type": "composer",
"url": "https://repo.magento.com/"
}
},
"require": {
"php": "^7.0",
"ext-PDO": "*",
"ext-json": "*",
"ext-sockets": "*",
"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/process": "~2.1||~4.1.0",
"symfony/yaml": "^3.3||^4.0",
"twig/twig": "^1.0||^2.0",
"magento/magento-cloud-components": "^1.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",
"phpstan/phpstan": "@stable"
},
"conflict": {
"nesbot/carbon": ">=1.38 <2.0"
},
"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": [
"@phpstan",
"@phpcs",
"@phpmd",
"@phpunit",
"@coverage"
],
"test7.0": [
"@phpstan7.0",
"@phpcs",
"@phpmd",
"@phpunit",
"@coverage"
],
"phpstan": "phpstan analyse -c tests/static/phpstan.neon",
"phpstan7.0": "phpstan analyse -l 1 -c tests/static/phpstan7.0.neon src",
"phpcs": "phpcs src --standard=tests/static/phpcs-ruleset.xml -p -n",
"phpmd": "phpmd src xml tests/static/phpmd-ruleset.xml",
"phpunit": "phpunit --configuration tests/unit",
"coverage": "phpunit --configuration tests/unit --coverage-clover tests/unit/tmp/clover.xml && php tests/unit/code-coverage.php tests/unit/tmp/clover.xml",
"coverage-generate": "phpunit --configuration tests/unit --coverage-html tests/unit/tmp/coverage",
"pre-autoload-dump": [
"Magento\\MagentoCloud\\Composer\\ClearAutoload::preAutoloadDump"
]
},
"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/mutagen.sh",
"mutagen.sh"
],
[
"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"
}
]
}
}