-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·47 lines (47 loc) · 1.22 KB
/
Copy pathcomposer.json
File metadata and controls
executable file
·47 lines (47 loc) · 1.22 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
{
"name": "bricev/jobqueue",
"type": "library",
"description": "JobQueue is a PHP component that queues `tasks` defining `jobs` which can be executed by asynchronous and/or distributed `workers`",
"homepage": "https://github.com/bricev/JobQueue",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.1",
"http-interop/response-sender": "^1.0",
"middlewares/error-handler": "^1.0",
"middlewares/fast-route": "^1.0",
"middlewares/payload": "^1.0",
"middlewares/request-handler": "^1.0",
"predis/predis": "^1.0",
"psr/log": "^1.0",
"ramsey/uuid": "^3.0",
"relay/relay": "^2.0",
"symfony/config": "^4.0",
"symfony/console": "^4.0",
"symfony/dependency-injection": "^4.0",
"symfony/event-dispatcher": "^4.0",
"symfony/yaml": "^4.0",
"vlucas/phpdotenv": "^2.0",
"zendframework/zend-diactoros": "^1.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^6.1",
"phpunit/phpunit": "^6",
"symfony/process": "^4.0"
},
"autoload": {
"psr-4": {
"JobQueue\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"JobQueue\\Tests\\": "tests/src"
}
},
"bin": [
"bin/manager",
"bin/worker"
]
}