-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1.17 KB
/
composer.json
File metadata and controls
36 lines (36 loc) · 1.17 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
{
"name": "fervo/deferred-event-bundle",
"description": "Defer your events to another process (via FastCGI)",
"license": "MIT",
"authors": [
{
"name": "Magnus Nordlander",
"email": "magnus@fervo.se",
"homepage": "http://www.fervo.se/",
"role": "Developer"
},
{
"name": "Tobias Nyholm",
"email": "tobias@happyr.com",
"homepage": "http://developer.happyr.se/",
"role": "Contributor"
}
],
"type": "symfony-bundle",
"autoload": {
"psr-0": { "Fervo\\DeferredEventBundle": "" }
},
"target-dir": "Fervo/DeferredEventBundle",
"require": {
"php": ">=5.4",
"symfony/event-dispatcher": "~3.0",
"symfony/framework-bundle": "~3.0",
"symfony/console": "~3.0"
},
"suggest": {
"redeye/sidekiq-bundle": "Simplifies the configuration of your Sidekiq client",
"musicglue/sidekiq-job-pusher": "dev-master",
"videlalvaro/php-amqplib": "To enable pushing to a AMQP compatible queue like RabbitMQ. Use version 2.3.0 or above"
},
"bin": ["Resources/bin/dispatch.php"]
}