-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
33 lines (33 loc) · 1.03 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
{
"name": "shonm/resque-bundle",
"type": "symfony-bundle",
"description": "Symfony2 bundle for Resque via php-resque",
"keywords": ["resque", "redis", "worker", "queue", "php-resque"],
"homepage": "https://github.com/ShonM/ResqueBundle",
"license": "MIT",
"authors": [
{
"name": "Shon M",
"email": "[email protected]"
}
],
"autoload": {
"psr-0": { "ShonM\\ResqueBundle": "" }
},
"target-dir": "ShonM/ResqueBundle",
"config": {
"bin-dir": "bin"
},
"minimum-stability": "dev",
"require-dev": {
"symfony/symfony": ">=2.1,<3.0-dev",
"shonm/php-resque": "dev-master",
"colinmollenhour/credis": "dev-master",
"phpunit/phpunit": "3.7.x"
},
"suggest": {
"shonm/php-resque-scheduler": "Allows use of the scheduler component",
"ebernhardson/fastcgi": "Allows php-resque to execute jobs via php-fpm.",
"symfony/process": "If you want to take advantage of the worker:restart command"
}
}