forked from paratestphp/paratest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
74 lines (74 loc) · 1.95 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "brianium/paratest",
"require": {
"php": "^7.2",
"ext-pcre": "*",
"ext-reflection": "*",
"ext-simplexml": "*",
"brianium/habitat": "1.0.0",
"composer/semver": "~1.2",
"phpunit/php-timer": "^2.0",
"phpunit/phpunit": "^8.0",
"symfony/console": "^3.4|^4.0",
"symfony/process": "^3.4|^4.0",
"phpunit/php-code-coverage": "^7.0.2"
},
"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/"
}
},
"scripts": {
"style": [
"php-cs-fixer fix --dry-run --verbose"
],
"style-fix": [
"php-cs-fixer fix"
],
"test": [
"phpunit"
],
"test-unit": [
"phpunit test/unit"
],
"test-functional": [
"phpunit test/functional"
],
"test-paratest": [
"bin/paratest"
]
},
"scripts-descriptions": {
"style": "Run style checks (only dry run - no fixing!)",
"style-fix": "Run style checks and fix violations",
"test": "Run all tests",
"test-unit": "Run only unit tests",
"test-functional": "Run only functional tests",
"test-paratest": "Run all tests with paratest itself"
}
}