forked from magento/magento-cloud-patches
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.19 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
{
"name": "magento/magento-cloud-patches",
"description": "Provides critical fixes for Magento 2 Enterprise Edition",
"type": "magento2-component",
"version": "1.0.1",
"license": "OSL-3.0",
"require": {
"php": "^7.0",
"ext-json": "*",
"composer/composer": "@stable",
"composer/semver": "^1.5",
"symfony/config": "^3.3||^4.4",
"symfony/console": "^2.8||^4.0",
"symfony/dependency-injection": "^3.3||^4.3",
"symfony/process": "^2.1||^4.1"
},
"require-dev": {
"phpmd/phpmd": "@stable",
"phpunit/phpunit": "^6.2",
"squizlabs/php_codesniffer": "^3.0"
},
"bin": [
"bin/ece-patches"
],
"autoload": {
"psr-4": {
"Magento\\CloudPatches\\": "src/"
}
},
"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
}