-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.36 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.36 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
{
"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": "torsten@appwrite.io"
}
],
"autoload": {
"psr-4": {
"Utopia\\Queue\\": "src/Queue"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\E2E\\": "tests/Queue/E2E"
}
},
"scripts": {
"test": "phpunit --testsuite unit",
"test:e2e": "tests/e2e.sh"
},
"require": {
"php": ">=8.4",
"utopia-php/di": "^0.3",
"utopia-php/lock": "^0.2",
"utopia-php/servers": "^0.4",
"utopia-php/pools": "^1.0",
"utopia-php/telemetry": "^0.4",
"utopia-php/validators": "^0.2"
},
"require-dev": {
"ext-redis": "*",
"swoole/ide-helper": "4.8.8",
"workerman/workerman": "^4.0"
},
"suggest": {
"ext-swoole": "Needed to support Swoole.",
"workerman/workerman": "Needed to support Workerman."
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"tbachert/spi": true
}
}
}