forked from mmoreram/RSQueueBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
35 lines (35 loc) · 1 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
{
"name": "mmoreram/rsqueue-bundle",
"type": "symfony-bundle",
"description": "Redis Symfony2 Queue Bundle, a simple and soft redis based message queue for symfony2",
"keywords": ["rsqueue", "redis", "queue", "symfony"],
"homepage": "http://rsqueue.com",
"license": "MIT",
"authors": [
{
"name": "Marc Morera",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.3",
"symfony/event-dispatcher": "~2.3|~3.0",
"symfony/framework-bundle": "~2.3|~3.0",
"doctrine/annotations": "^1.1.2",
"symfony/console": "~2.3|~3.0",
"symfony/config": "~2.3|~3.0",
"symfony/http-kernel": "~2.3|~3.0",
"symfony/dependency-injection": "~2.3|~3.0"
},
"require-dev": {
"symfony/phpunit-bridge": "~2.7"
},
"autoload": {
"psr-4": { "Mmoreram\\RSQueueBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}