This repository was archived by the owner on Apr 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (49 loc) · 1.43 KB
/
composer.json
File metadata and controls
57 lines (49 loc) · 1.43 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
53
54
55
56
57
{
"_-x-vim-formatting": " vim: set ft=javascript ts=4 sw=4 et : ",
"name": "vend/resque",
"description": "Namespaced port of chrisbolton/php-resque, supports Predis, more DI",
"license": "MIT",
"authors": [
{
"name": "Chris Boulton",
"email": "chris@bigcommerce.com"
},
{
"name": "Vend Devteam",
"email": "devteam@vendhq.com"
}
],
"autoload": {
"psr-4": {
"Resque\\": "src"
}
},
"bin": [
"resque"
],
"require": {
"php": ">=5.3.7",
"ext-pcntl": "*",
"psr/log": ">=1.0.0",
"symfony/console": ">=2.5.6"
},
"require-dev": {
"colinmollenhour/credis": "1.3.*",
"predis/predis": ">=0.8.6",
"phpunit/phpunit": "4.3.*",
"monolog/monolog": "1.7.*"
},
"extra": {
"branch-alias": {
"dev-master": "2.1.x-dev",
"dev-2.0": "2.0.x-dev"
}
},
"suggest": {
"ext-proctitle": "Allows php-resque to rename the title of UNIX processes to show the status of a worker.",
"predis/predis": "Suggested Redis client",
"ext-phpiredis": "Better performance for Predis",
"colinmoullenhour/credis": "Alternative Redis client",
"ext-phpredis": "Better performance for Credis"
}
}