forked from paratestphp/paratest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.18 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
{
"name": "brianium/paratest",
"require": {
"php": ">=7.1",
"ext-pcre": "*",
"ext-reflection": "*",
"ext-simplexml": "*",
"brianium/habitat": "1.0.0",
"composer/semver": "~1.2",
"phpunit/php-timer": "^2.0",
"phpunit/phpunit": "^7.0",
"symfony/console": "^3.4|^4.0",
"symfony/process": "^3.4|^4.0",
"phpunit/php-code-coverage": "^6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.3.2"
},
"type": "library",
"description": "Parallel testing for PHP",
"keywords": ["testing","PHPUnit", "concurrent", "parallel"],
"homepage": "https://github.com/paratestphp/paratest",
"license": "MIT",
"authors": [
{
"name": "Brian Scaturro",
"email": "[email protected]",
"homepage": "http://brianscaturro.com",
"role": "Lead"
}
],
"bin": ["bin/paratest"],
"autoload": {
"psr-4": {
"ParaTest\\": ["src/"]
}
},
"autoload-dev": {
"psr-0": {
"": "test/functional"
},
"psr-4": {
"ParaTest\\": "test/unit/"
}
}
}