forked from paratestphp/paratest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
88 lines (88 loc) · 2.36 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "brianium/paratest",
"description": "Parallel testing for PHP",
"license": "MIT",
"type": "library",
"keywords": [
"testing",
"PHPUnit",
"concurrent",
"parallel"
],
"authors": [
{
"name": "Brian Scaturro",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Filippo Tessarotto",
"email": "[email protected]",
"role": "Developer"
}
],
"homepage": "https://github.com/paratestphp/paratest",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/Slamdunk"
},
{
"type": "paypal",
"url": "https://paypal.me/filippotessarotto"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0",
"ext-dom": "*",
"ext-pcre": "*",
"ext-reflection": "*",
"ext-simplexml": "*",
"fidry/cpu-core-counter": "^0.4.1 || ^0.5.1",
"jean85/pretty-package-versions": "^2.0.5",
"phpunit/php-code-coverage": "^10.0.2",
"phpunit/php-file-iterator": "^4.0.1",
"phpunit/php-timer": "^6.0",
"phpunit/phpunit": "^10.0.17",
"sebastian/environment": "^6.0",
"symfony/console": "^6.2.7",
"symfony/process": "^6.2.7"
},
"require-dev": {
"ext-pcov": "*",
"ext-posix": "*",
"doctrine/coding-standard": "^11.1.0",
"infection/infection": "^0.26.19",
"phpstan/phpstan": "^1.10.7",
"phpstan/phpstan-deprecation-rules": "^1.1.3",
"phpstan/phpstan-phpunit": "^1.3.10",
"phpstan/phpstan-strict-rules": "^1.5",
"squizlabs/php_codesniffer": "^3.7.2",
"symfony/filesystem": "^6.2.7"
},
"autoload": {
"psr-4": {
"ParaTest\\": [
"src/"
]
}
},
"autoload-dev": {
"psr-4": {
"ParaTest\\Tests\\": "test/"
}
},
"bin": [
"bin/paratest",
"bin/paratest.bat",
"bin/paratest_for_phpstorm"
],
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true
},
"sort-packages": true
}
}