-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
54 lines (54 loc) · 1.51 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
45
46
47
48
49
50
51
52
53
54
{
"name": "scones/resque",
"description": "resque (for php) is a Redis-backed library for creating background jobs, placing them on multiple queues, and processing them later. compatible to the original http://resque.github.io/",
"type": "library",
"homepage": "https://github.com/scones/resque",
"license": "MIT",
"keywords": ["psr-12", "resque", "queue", "tasks", "task queue", "message queue"],
"authors": [
{
"name": "Dirk Gustke",
"email": "code+resque@asm68k.org",
"homepage": "https://github.com/scones"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/php-fig/event-dispatcher.git"
},
{
"type": "git",
"url": "https://github.com/scones/event-dispatcher-task.git"
}
],
"require": {
"php": "~7.2",
"ext-pcntl": "*",
"psr/container": "^1.0",
"psr/event-dispatcher": "^0.6.0, <1.0.0",
"psr/event-dispatcher-task": "^0.6.0",
"predis/predis": "*@stable"
},
"suggest": {
"scones/nexus": "^0.6.0",
"pimple/pimple": "*@stable"
},
"require-dev": {
"phpunit/phpunit": "*@stable",
"php-mock/php-mock-phpunit": "*@stable"
},
"autoload": {
"psr-4": {
"Resque\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Resque\\Tests\\": "tests/"
}
},
"platform": {
"php": "~7.2"
}
}