forked from wa0x6e/php-resque-ex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.12 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
{
"name": "intersective/php-resque-ex",
"type": "library",
"description": "Redis backed library for creating background jobs and processing them later. PHP port based on resque for Ruby.",
"keywords": ["job", "background", "redis", "resque", "queue", "php"],
"homepage": "http://www.github.com/wa0x6e/php-resque-ex/",
"license": "MIT",
"authors": [
{
"name": "Wan Chen",
"email": "wan@wanki.moe"
},
{
"name": "Chris Boulton",
"email": "chris@bigcommerce.com"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/intersective/monolog-init.git"
}
],
"require": {
"php": ">=5.3.0",
"ext-pcntl": "*",
"monolog/monolog": ">=1.2.0",
"kamasama/monolog-init": "0.2.2.x-dev"
},
"minimum-stability": "dev",
"autoload": {
"psr-0": {
"Resque": "lib"
}
},
"suggest": {
"fresque/fresque": "A command line tool to manage your workers"
},
"support": {
"email": "wan@wanki.moe",
"issues": "https://github.com/wa0x6e/php-resque-ex/issues",
"source": "https://github.com/wa0x6e/php-resque-ex"
},
"bin": [
"bin/resque"
],
"conflict": {
"chrisboulton/php-resque": "*"
}
}