forked from facile-it/paraunit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
85 lines (85 loc) · 2.45 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
{
"name": "facile-it/paraunit",
"type": "library",
"description": "paraunit",
"support": {
"issues": "https://github.com/facile-it/paraunit/issues"
},
"keywords": [
"parallel test",
"testing",
"phpunit"
],
"homepage": "http://github.com/facile-it/paraunit",
"license": "Apache-2.0",
"authors": [
{
"name": "Francesco Panina",
"email": "[email protected]"
},
{
"name": "Alessandro Lai",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3||^8.0",
"ext-dom": "*",
"ext-json": "*",
"jean85/pretty-package-versions": "^1.5.1||^2.0.1",
"phpunit/php-code-coverage": "^9.0",
"phpunit/php-file-iterator": "^3.0",
"phpunit/phpunit": "^9.3",
"psr/event-dispatcher": "^1.0",
"symfony/console": "^3.4||^4.0||^5.0",
"symfony/dependency-injection": "^3.4||^4.0||^5.0",
"symfony/event-dispatcher": "^3.4||^4.0||^5.0",
"symfony/process": "^3.4||^4.0||^5.0",
"symfony/stopwatch": "^3.4||^4.0||^5.0"
},
"require-dev": {
"facile-it/facile-coding-standard": "^0.5.1",
"jangregor/phpstan-prophecy": "^0.8.1",
"phpspec/prophecy": "^1.12",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^0.12.42",
"phpstan/phpstan-phpunit": "^0.12.6",
"phpunit/php-invoker": "^3.0",
"symfony/expression-language": "^3.4||^4.0||^5.0",
"symfony/phpunit-bridge": "^5.1"
},
"bin": [
"src/Bin/paraunit"
],
"config": {
"sort-packages": true,
"bin-dir": "bin"
},
"autoload": {
"psr-4": {
"Paraunit\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"scripts": {
"phpstan": "phpstan analyse",
"cs-check": "php -n bin/php-cs-fixer fix --dry-run --diff",
"cs-fix": "php -n bin/php-cs-fixer fix"
},
"minimum-stability": "stable",
"extra": {
"branch-alias": {
"dev-master": "1.2-dev",
"dev-0.12.x": "0.12-dev"
}
},
"suggest": {
"ext-pcov": "A coverage driver for faster collection",
"dama/doctrine-test-bundle": "Useful for Symfony+Doctrine functional testing, providing DB isolation"
}
}