-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.49 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
{
"name": "patchlevel/worker",
"type": "library",
"license": "MIT",
"description": "Gives the opportunity to build a stable worker that terminates properly when limits are exceeded.",
"keywords": [
"console",
"worker"
],
"homepage": "https://github.com/patchlevel/worker",
"authors": [
{
"name": "Daniel Badura",
"email": "[email protected]"
},
{
"name": "David Badura",
"email": "[email protected]"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"symfony/event-dispatcher": "^5.4.26|^6.4.0|^7.0.0"
},
"require-dev": {
"cspray/phinal": "^2.0.0",
"infection/infection": "^0.27.8",
"patchlevel/coding-standard": "^1.3.0",
"phpbench/phpbench": "^1.2.15",
"phpspec/prophecy-phpunit": "^2.1.0",
"phpstan/phpstan": "^1.10.49",
"phpunit/phpunit": "^10.5.2",
"psalm/plugin-phpunit": "^0.19.0",
"roave/infection-static-analysis-plugin": "^1.34.0",
"symfony/var-dumper": "^5.4.29|^6.4.0|^7.0.0",
"vimeo/psalm": "^5.17.0"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true,
"composer/package-versions-deprecated": true
}
},
"autoload": {
"psr-4": {
"Patchlevel\\Worker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Patchlevel\\Worker\\Tests\\": "tests/"
}
}
}