-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
55 lines (55 loc) · 1.35 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
{
"name": "bkubicki/magento2-unit-tests-doubles",
"description": "Unit tests doubles for Magento 2",
"type": "library",
"license": [
"MIT"
],
"authors": [
{
"name": "Bartosz Kubicki",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.4",
"magento/framework": "^100.1|^101.0|^102.0|^103.0",
"magento/module-catalog": "^101.0|^102.0|^103.0|^104.0",
"magento/module-customer": "^101.0|^102.0|^103.0",
"magento/module-quote": "^101.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0.0",
"infection/infection": "^0.13.5",
"phpmd/phpmd": "^2.7",
"squizlabs/php_codesniffer": "^3.4"
},
"keywords": [
"Magento2"
],
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"BKubicki\\Magento2TestDoubles\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BKubicki\\Magento2TestDoubles\\": "tests"
}
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"scripts": {
"test-unit-coverage": "vendor/bin/phpunit -c phpunit.xml --testsuite 'Unit' --coverage-html coverage/coverage-html --colors=always",
"test-integration": "vendor/bin/phpunit -c phpunit.xml --testsuite 'Integration' --colors=always",
"test-infection": "scripts/tests/infection.sh"
}
}