-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.34 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
{
"name": "magento/magento-support-patches",
"description": "Provides critical fixes for Magento 2",
"type": "magento2-component",
"version": "1.0.0",
"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.6||^4.0",
"symfony/dependency-injection": "^3.3||^4.3",
"symfony/process": "^2.1||^4.1"
},
"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/magento-patches"
],
"autoload": {
"psr-4": {
"Magento\\SupportPatches\\": "src/",
"Magento\\SupportPatches\\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
}