-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (50 loc) · 1.28 KB
/
composer.json
File metadata and controls
52 lines (50 loc) · 1.28 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
{
"name": "phlib/jobqueue",
"type": "library",
"description": "Job Queue implementation.",
"keywords": ["job", "task", "queue", "beanstalk"],
"license": "LGPL-3.0",
"authors": [
{
"name": "Luke Richards"
},
{
"name": "Phlib Team & Contributors",
"homepage": "https://github.com/phlib/jobqueue/contributors"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"phlib/beanstalk": "^3",
"phlib/db": "^2 || ^3",
"phlib/console-configuration": "^2 || ^3",
"phlib/console-process": "^3 || ^4",
"psr/log": "^1 || ^2 || ^3",
"aws/aws-sdk-php": "^3.61",
"stechstudio/backoff": "^1.6"
},
"require-dev": {
"symplify/easy-coding-standard": "^12",
"phpspec/prophecy": "^1",
"phpspec/prophecy-phpunit": "^2",
"phpunit/phpunit": "^10"
},
"autoload": {
"psr-4": {
"Phlib\\JobQueue\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phlib\\JobQueue\\": "tests/"
}
},
"bin": [
"bin/jobqueue"
],
"scripts": {
"check-cs": "vendor/bin/ecs check --ansi",
"fix-cs": "vendor/bin/ecs check --fix --ansi"
}
}