forked from liuggio/fastest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 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
40
41
42
{
"name": "liuggio/fastest",
"description": "Simple parallel testing execution... with some goodies for functional tests.",
"license": "MIT",
"authors": [
{
"name": "liuggio",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6",
"symfony/console": ">=2.7 <5.0",
"symfony/stopwatch": ">=2.7 <5.0",
"symfony/process": ">=2.7 <5.0",
"doctrine/collections" : "~1.2",
"phpunit/phpunit": "^5.7|^6.1"
},
"require-dev": {
"behat/behat": "~2.5"
},
"config": {
"bin-dir": "bin/"
},
"extra": {
"branch-alias": {
"dev-master": "1.4-dev"
}
},
"suggest": {
"behat/behat": "Install it if you want to run tests with the provided Behat extension"
},
"bin": [
"fastest"
],
"autoload": {
"psr-4": {"Liuggio\\Fastest\\": ["src", "adapters"]}
},
"autoload-dev": {
"psr-4": { "Liuggio\\Fastest\\": "tests" }
}
}