-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 2.26 KB
/
composer.json
File metadata and controls
72 lines (72 loc) · 2.26 KB
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": "bernhard.schussek@webmozarts.com"
},
{
"name": "Théo Fidry",
"email": "theo.fidry@webmozarts.com"
}
],
"require": {
"php": "^8.3",
"fidry/cpu-core-counter": "^1.2",
"nikic/iter": "^2.4.1",
"psr/log": "^1.1.4 || ^2.0 || ^3.0.2",
"symfony/console": "^6.4.17 || ^7.2.1",
"symfony/dependency-injection": "^6.4.19 || ^7.2.4",
"symfony/deprecation-contracts": "^2.5.4 || ^3.5.1",
"symfony/process": "^6.4.19 || ^7.2.4",
"symfony/service-contracts": "^3.5.1",
"thecodingmachine/safe": "^3.0.2",
"webmozart/assert": "^1.11"
},
"require-dev": {
"ext-json": "*",
"bamarni/composer-bin-plugin": "^1.8.2",
"composer/semver": "^3.4.3",
"ergebnis/composer-normalize": "^2.45",
"fidry/makefile": "^1.1.1",
"infection/infection": "^0.29.14 || ^0.31.0",
"jangregor/phpstan-prophecy": "^2.1.1",
"phpspec/prophecy-phpunit": "^2.3",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^2.1.10",
"phpstan/phpstan-phpunit": "^2.0.4",
"phpstan/phpstan-symfony": "^2.0.3",
"phpstan/phpstan-webmozart-assert": "^2.0",
"phpunit/phpunit": "^12.0",
"symfony/framework-bundle": "^6.4.19 || ^7.2.4",
"webmozarts/strict-phpunit": "^7.13.1"
},
"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
}
}
}