-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.58 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.58 KB
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
{
"name": "cleatsquad/module-parallel-tests-plus",
"description": "Magento 2 module that enhances the dev:tests:run CLI command by enabling ParaTest parallel execution using --processes and --runner options.",
"type": "magento2-module",
"version": "1.0.0",
"license": "MIT",
"authors": [
{
"name": "Mohamed EL Mrabet",
"email": "contact@cleatsquad.dev",
"homepage": "https://cleatsquad.dev",
"role": "Developer"
}
],
"keywords": [
"magento2",
"testing",
"paratest",
"phpunit",
"parallel-testing",
"magento-testing",
"dev-tests-run",
"static-tests",
"developer-tools"
],
"support": {
"issues": "https://github.com/cleatsquad/module-parallel-tests-plus/issues",
"source": "https://github.com/cleatsquad/module-parallel-tests-plus",
"docs": "https://github.com/cleatsquad/module-parallel-tests-plus"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"CleatSquad\\ParallelTestsPlus\\": ""
}
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"require": {
"php": "~8.2|~8.3|~8.4",
"brianium/paratest": "^7.4",
"magento/module-developer": "^100.4"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": true
}
}
}