-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
30 lines (30 loc) · 941 Bytes
/
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
{
"name": "chinthakagodawita/codeception-timekeeper",
"type": "library",
"description": "A Codeception extension & Robo task that records test runtimes and lets you split tests into equal runtime-based groups for parallel runs",
"keywords": ["codeception", "robo"],
"homepage": "https://github.com/chinthakagodawita/codeception-timekeeper",
"license": "MIT",
"authors": [
{
"name": "Chinthaka Godawita",
"email": "chin.godawita@me.com"
}
],
"autoload": {
"psr-4": {
"ChinthakaGodawita\\CodeceptionTimekeeper\\": "src"
}
},
"require": {
"php": ">=7.2",
"ext-json": "*",
"codeception/codeception": "^3.1||^4.1"
},
"require-dev": {
"consolidation/robo": "^1.0||^2.1"
},
"suggest": {
"consolidation/robo": "For time-based test splitting and parallel test run support."
}
}