forked from magento/quality-patches
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.38 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/quality-patches",
"description": "Provides quality patches for Magento 2",
"type": "magento2-component",
"version": "1.0.13",
"license": "proprietary",
"repositories": {
"repo": {
"type": "composer",
"url": "https://repo.magento.com"
}
},
"require": {
"php": "^7.0",
"ext-json": "*",
"magento/magento-cloud-patches": "^1.0.6"
},
"require-dev": {
"codeception/codeception": "^2.5.3",
"consolidation/robo": "^1.2",
"phpunit/phpunit": "^6.2",
"composer/semver": "@stable",
"phpmd/phpmd": "@stable",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"psr-4": {
"Magento\\QualityPatches\\": "src/",
"Magento\\QualityPatches\\Test\\Functional\\": "tests/functional/",
"Magento\\QualityPatches\\Sniffs\\": "tests/static/sniffs/"
}
},
"scripts": {
"test:all": [
"@test:phpcs",
"@test:phpmd",
"@test:integrity"
],
"test:phpcs": "phpcs src --standard=tests/static/phpcs-ruleset.xml -p -n",
"test:phpmd": "phpmd src xml tests/static/phpmd-ruleset.xml",
"test:integrity": "phpunit --configuration ./tests/integrity"
},
"config": {
"sort-packages": true
},
"prefer-stable": true
}