forked from magento/magento-cloud-patches
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.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
{
"name": "magento/magento-cloud-patches",
"description": "Provides critical fixes for Magento 2 Enterprise Edition",
"type": "magento2-component",
"version": "1.0.8",
"license": "OSL-3.0",
"require": {
"php": "^7.0",
"ext-json": "*",
"composer/composer": "@stable",
"composer/semver": "^1.5",
"symfony/config": "^3.3||^4.4||^5.1",
"symfony/console": "^2.6||^4.0||^5.1",
"symfony/dependency-injection": "^3.3||^4.3||^5.1",
"symfony/process": "^2.1||^4.1||^5.1",
"symfony/proxy-manager-bridge": "^3.3||^4.3||^5.1",
"symfony/yaml": "^3.3||^4.0||^5.1",
"monolog/monolog": "^1.16",
"magento/quality-patches": "^1.0.7"
},
"require-dev": {
"codeception/codeception": "^2.5.3",
"consolidation/robo": "^1.2",
"phpmd/phpmd": "@stable",
"phpunit/phpunit": "^6.2",
"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
},
"prefer-stable": true
}