-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 976 Bytes
/
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
{
"name":"riverline/worker-bundle",
"description":"Symfony2 Bundle to use queue with workers",
"keywords":["worker", "queue", "bundle", "symfony2"],
"type":"library",
"license":"MIT",
"authors":[
{
"name":"Romain Cambien",
"email":"romain@riverline.fr"
},
{
"name":"Riverline",
"homepage":"http://www.riverline.fr"
}
],
"homepage": "https://github.com/rcambien/riverline-worker-bundle",
"require":{
"php": ">=5.3",
"symfony/console": "*",
"symfony/dependency-injection": "*",
"symfony/config": "*",
"symfony/http-kernel": "*"
},
"require-dev": {
"amazonwebservices/aws-sdk-for-php": "*",
"predis/predis": "*"
},
"autoload":{
"psr-0":{
"Riverline\\WorkerBundle": "src/"
}
}
}