-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
61 lines (61 loc) · 1.46 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
56
57
58
59
60
61
{
"name": "ecomdev/magento2-test-essentials",
"description": "Magento 2 Test Essentials",
"type": "library",
"require": {
"magento/framework": "~103.0",
"magento/module-catalog": "~104.0",
"magento/module-quote": "~101.0",
"magento/module-customer": "~103.0",
"magento/module-store": "~101.0",
"php": "~8.1.0||~8.2.0||~8.3.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.0",
"phpunit/phpunit": "^11.5",
"brianium/paratest": "^7.7",
"ecomdev/testcontainers-magento-data": "~1.1"
},
"suggest": {
"ecomdev/testcontainers-magento-data": "Database Containers pre-populated with various data",
"ext-pdo": "For datbase connections with ResourceConnection implemenation"
},
"license": [
"MIT"
],
"keywords": [
"magento2",
"testing",
"fake objects"
],
"repositories": {
"magento": {
"type": "composer",
"url": "https://mirror.mage-os.org/"
}
},
"autoload": {
"psr-4": {
"EcomDev\\Magento2TestEssentials\\": "src"
}
},
"autoload-dev": {
"files": [
"tests/fixtures.php"
],
"psr-4": {
"EcomDev\\Magento2TestEssentials\\": "tests"
}
},
"scripts": {
"test": "XDEBUG_MODE=coverage paratest --coverage-text",
"format:check": "phpcs",
"format:write": "phpcbf"
},
"config": {
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": false
}
},
"$schema": "https://getcomposer.org/schema.json"
}