-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
44 lines (44 loc) · 1.23 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
{
"name": "utopia-php/queue",
"description": "A powerful task queue.",
"type": "library",
"keywords": ["php","framework", "upf", "utopia", "tasks", "queue"],
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Torsten Dittmann",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {"Utopia\\Queue\\": "src/Queue"}
},
"autoload-dev": {
"psr-4": {"Tests\\E2E\\": "tests/Queue/E2E"}
},
"scripts":{
"test": "phpunit",
"analyse": "vendor/bin/phpstan analyse",
"format": "vendor/bin/pint",
"lint": "vendor/bin/pint --test"
},
"require": {
"php": ">=8.0",
"utopia-php/cli": "0.19.*",
"utopia-php/servers": "0.1.*",
"utopia-php/di": "0.1.*"
},
"require-dev": {
"swoole/ide-helper": "4.8.8",
"phpunit/phpunit": "^9.5.5",
"laravel/pint": "^0.2.3",
"workerman/workerman": "^4.0",
"phpstan/phpstan": "^1.8"
},
"suggest": {
"ext-redis": "Needed to support Redis connections",
"ext-swoole": "Needed to support Swoole.",
"workerman/workerman": "Needed to support Workerman."
}
}