forked from quizlet/paratest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.02 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
{
"name": "brianium/paratest",
"require": {
"php": ">=5.4.0",
"phpunit/phpunit": ">=3.7.8",
"phpunit/php-timer": ">=1.0.4",
"symfony/console": "~2.3|~3.0",
"symfony/process": "~2.3|~3.0",
"brianium/habitat": "1.0.0",
"ext-reflection": "*",
"ext-simplexml": "*",
"ext-pcre": "*",
"composer/semver": "~1.2.0"
},
"type": "library",
"description": "Parallel testing for PHP",
"keywords": ["testing","PHPUnit", "concurrent", "parallel"],
"homepage": "https://github.com/brianium/paratest",
"license": "MIT",
"authors": [
{
"name": "Brian Scaturro",
"email": "scaturrob@gmail.com",
"homepage": "http://brianscaturro.com",
"role": "Lead"
}
],
"bin": ["bin/paratest"],
"autoload": {
"psr-0": {
"ParaTest": ["src/"]
}
},
"autoload-dev": {
"psr-0": {
"": ["test/unit", "test/functional"]
}
}
}