forked from paratestphp/paratest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
31 lines (31 loc) · 886 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
31
{
"name": "brianium/paratest",
"require": {
"php": ">=5.3.0",
"phpunit/phpunit": ">=3.7.8",
"phpunit/php-timer": ">=1.0.4",
"symfony/console": "~2.3",
"symfony/process": "~2.3",
"brianium/habitat": "1.0.0",
"ext-reflection": "*",
"ext-simplexml": "*",
"ext-pcre": "*"
},
"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": "[email protected]",
"homepage": "http://brianscaturro.com",
"role": "Lead"
}
],
"bin": ["bin/paratest"],
"autoload": {
"psr-0": { "ParaTest": ["src/", "test/", "it/"] }
}
}