-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 928 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 928 Bytes
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
{
"name": "vecode/caldera-queue",
"description": "Job queue layer, part of Vecode Caldera",
"version": "2.0.0",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "biohzrdmx",
"email": "hi@biohzrdmx.me",
"homepage": "https://biohzrdmx.me"
}
],
"require": {
"php": ">=8.1",
"ext-mbstring": "*"
},
"require-dev": {
"psr/event-dispatcher": "^1.0",
"vecode/caldera-events": "^1.0",
"vecode/caldera-database": "^1.3",
"vecode/caldera-orm": "^1.0",
"predis/predis": "^2.1"
},
"autoload": {
"psr-4": {
"Caldera\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Caldera\\Tests\\": "tests/"
}
},
"scripts": {
"analyse": "phpstan analyse --configuration phpstan.neon --memory-limit 1G --level 7 src",
"coverage": "phpunit --coverage-text",
"test": "phpunit --testdox"
},
"minimum-stability": "stable"
}