-
Notifications
You must be signed in to change notification settings - Fork 84
/
composer.json
executable file
·104 lines (104 loc) · 3.4 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.1.19",
"license": "OSL-3.0",
"repositories": {
"repo.magento.com": {
"type": "composer",
"url": "https://repo.magento.com/"
}
},
"require": {
"php": "^8.0",
"ext-PDO": "*",
"ext-json": "*",
"ext-sockets": "*",
"colinmollenhour/credis": "^1.6.0 || ^1.13",
"composer/composer": "^1.9 || ^2.0 || !=2.2.16",
"composer/semver": "@stable",
"graylog2/gelf-php": "^2.0.1",
"guzzlehttp/guzzle": "^7.3 || ^7.5",
"illuminate/config": "^5.5||^8.77",
"magento/magento-cloud-components": "^1.0.8",
"magento/magento-cloud-docker": "^1.0.0",
"magento/magento-cloud-patches": "^1.0.20",
"magento/quality-patches": "^1.1.0",
"monolog/monolog": "^2.3 || ^2.7 || ^3.6",
"nesbot/carbon": "^1.0 || ^2.0",
"psr/container": "^1.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"symfony/config": "^4.4 || ^5.1 || ^5.4 || ^6.4",
"symfony/console": "^4.4 || ^5.1 || ^5.4 || ^6.4",
"symfony/dependency-injection": "^4.4 || ^5.1 || ^5.4 || ^6.4",
"symfony/process": "^4.4 || ^5.1 || ^5.4 || ^6.4",
"symfony/serializer": "^4.4 || ^5.4 || ^6.4",
"symfony/yaml": "^4.4 || ^5.1 || ^5.4 || ^6.4"
},
"require-dev": {
"codeception/codeception": "^5.1",
"codeception/module-asserts": "^3.0",
"codeception/module-db": "^3.0",
"codeception/module-phpbrowser": "^3.0",
"codeception/module-rest": "^3.0",
"consolidation/robo": "^3.0",
"php-mock/php-mock-phpunit": "^2.0",
"phpmd/phpmd": "@stable",
"phpstan/phpstan": "~1.2.0",
"phpunit/php-code-coverage": "^9.2",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.0",
"funkjedi/composer-include-files": "^1.0"
},
"conflict": {
"nesbot/carbon": ">=1.38 <2.0",
"symfony/console": "4.4.27 || 4.4.28"
},
"replace": {
"magento/ece-patches": "*",
"magento/magento-cloud-configuration": "*"
},
"bin": [
"bin/ece-tools"
],
"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:all": [
"@test:phpstan",
"@test:phpcs",
"@test:phpmd",
"@test:unit",
"@test:integration",
"@test:coverage"
],
"test:phpstan": "phpstan analyse -c tests/static/phpstan.neon",
"test:phpcs": "phpcs src --standard=tests/static/phpcs-ruleset.xml -p -n",
"test:phpmd": "phpmd src xml tests/static/phpmd-ruleset.xml",
"test:unit": "phpunit --configuration tests/unit",
"test:integration": "phpunit --configuration tests/integration",
"test:coverage": "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",
"pre-autoload-dump": [
"Magento\\MagentoCloud\\Composer\\ClearAutoload::preAutoloadDump"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"funkjedi/composer-include-files": true
}
},
"prefer-stable": true
}