-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathcomposer.json
72 lines (72 loc) · 2.25 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
{
"name": "webmozarts/console-parallelization",
"description": "Enables parallelization of Symfony Console commands",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Bernhard Schussek",
"email": "[email protected]"
},
{
"name": "Théo Fidry",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"fidry/cpu-core-counter": "^1.2",
"nikic/iter": "^2.2",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"symfony/console": "^6.4.15 || ^7.2",
"symfony/dependency-injection": "^6.4.16 || ^7.2",
"symfony/deprecation-contracts": "^2.5 || ^3.1",
"symfony/process": "^6.4.15 || ^7.2",
"symfony/service-contracts": "^3.3",
"thecodingmachine/safe": "^1.3.3 || ^2.4",
"webmozart/assert": "^1.5"
},
"require-dev": {
"ext-json": "*",
"bamarni/composer-bin-plugin": "^1.8",
"composer/semver": "^3.4",
"ergebnis/composer-normalize": "^2.28",
"fidry/makefile": "^1.0",
"infection/infection": "^0.27.0 || ^0.28.0 || ^0.29.0",
"jangregor/phpstan-prophecy": "^1.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-symfony": "^1.2",
"phpstan/phpstan-webmozart-assert": "^1.2",
"phpunit/phpunit": "^10.5.38 || ^11.0",
"symfony/framework-bundle": "^6.4.10 || ^7.2",
"webmozarts/strict-phpunit": "^7.3"
},
"autoload": {
"psr-4": {
"Webmozarts\\Console\\Parallelization\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Webmozarts\\Console\\Parallelization\\": "tests/"
}
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"forward-command": false
}
}
}