-
Notifications
You must be signed in to change notification settings - Fork 33
/
composer.json
65 lines (65 loc) · 2.12 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
{
"name": "magento/magento-cloud-patches",
"description": "Provides critical fixes for Magento 2 Enterprise Edition",
"type": "magento2-component",
"version": "1.1.2",
"license": "OSL-3.0",
"repositories": {
"repo.magento.com": {
"type": "composer",
"url": "https://repo.magento.com/"
}
},
"require": {
"php": "^8.0",
"ext-json": "*",
"composer/composer": "^1.9 || ^2.0",
"composer/semver": "@stable",
"monolog/monolog": "^1.25||^2.3||^2.7|| ^3.6",
"symfony/config": "^3.3||^4.4||^5.0||^6.0",
"symfony/console": "^2.8 || ^4.0 || ^5.1 || ^5.4 || ^6.4",
"symfony/dependency-injection": "^3.3||^4.3||^5.0||^6.0",
"symfony/process": "^2.1 || ^4.1 || ^5.1 || ^5.4 || ^6.4",
"symfony/proxy-manager-bridge": "^3.3||^4.3||^5.0||^6.0",
"symfony/yaml": "^3.3||^4.0||^5.0||^6.0||^7.0",
"magento/quality-patches": "^1.1.0"
},
"require-dev": {
"codeception/codeception": "^4.1 || ^5.1",
"codeception/module-asserts": "^1.2 || ^3.0",
"codeception/module-db": "^1.0 || ^3.0",
"codeception/module-phpbrowser": "^1.0 || ^3.0",
"codeception/module-rest": "^1.2 || ^3.0",
"consolidation/robo": "^1.2 || ^3.0 || ^5.0",
"phpmd/phpmd": "@stable",
"phpunit/phpunit": "^8.5 || ^9.5",
"squizlabs/php_codesniffer": "^3.0"
},
"bin": [
"bin/ece-patches",
"bin/magento-patches"
],
"autoload": {
"psr-4": {
"Magento\\CloudPatches\\": "src/",
"Magento\\CloudPatches\\Test\\Functional\\": "tests/functional/"
}
},
"scripts": {
"test": [
"@phpcs",
"@phpmd",
"@phpunit"
],
"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"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"magento/*": true
}
},
"prefer-stable": true
}