-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
89 lines (89 loc) · 2.68 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
89
{
"name": "facile-it/paraunit",
"type": "library",
"description": "paraunit",
"support": {
"issues": "https://github.com/facile-it/paraunit/issues"
},
"keywords": [
"parallel test",
"testing",
"phpunit"
],
"homepage": "https://github.com/facile-it/paraunit",
"license": "Apache-2.0",
"authors": [
{
"name": "Francesco Panina",
"email": "francesco.panina@gmail.com"
},
{
"name": "Alessandro Lai",
"email": "alessandro.lai85@gmail.com"
}
],
"require": {
"php": "^8.1",
"ext-dom": "*",
"ext-json": "*",
"jean85/pretty-package-versions": "^1.5.1||^2.0.1",
"phpunit/php-code-coverage": "^10.0||^11.0",
"phpunit/php-file-iterator": "^4.0||^5.0",
"phpunit/phpunit": "^10.5.4||^11.0",
"psr/event-dispatcher": "^1.0",
"symfony/console": "^4.4||^5.0||^6.0||^7.0",
"symfony/dependency-injection": "^4.4||^5.0||^6.0||^7.0",
"symfony/event-dispatcher": "^4.4||^5.0||^6.0||^7.0",
"symfony/process": "^4.4||^5.0||^6.0||^7.0",
"symfony/stopwatch": "^4.4||^5.0||^6.0||^7.0"
},
"require-dev": {
"facile-it/facile-coding-standard": "^1.0",
"jangregor/phpstan-prophecy": "dev-master as 1.1.0",
"phpspec/prophecy": "dev-master as 1.20",
"phpspec/prophecy-phpunit": "dev-master#0604e27 as 2.2.1",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "1.12.7",
"phpstan/phpstan-phpunit": "^1.1",
"phpunit/php-invoker": "^4.0||^5.0",
"psalm/plugin-phpunit": "^0.19",
"psalm/plugin-symfony": "^5.0",
"rector/rector": "1.2.10",
"symfony/expression-language": "^4.4||^5.0||^6.0||^7.0",
"symfony/phpunit-bridge": "^6.4||^7.0",
"vimeo/psalm": "^5.5.0"
},
"conflict": {
"composer/package-versions-deprecated": "<1.11.99"
},
"bin": [
"src/Bin/paraunit"
],
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"facile-it/facile-coding-standard": true,
"phpstan/extension-installer": true
}
},
"autoload": {
"psr-4": {
"Paraunit\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"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"
}
}