forked from treehouselabs/worker-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 886 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
35
36
37
{
"name": "treehouselabs/worker-bundle",
"type": "symfony-bundle",
"description": "Adds worker functionality to a Symfony2 project, using Beanstalkd as the message queue",
"keywords": ["worker", "beanstalk", "beanstalkd"],
"license": "MIT",
"authors": [
{
"name": "Peter Kruithof",
"email": "[email protected]"
},
{
"name": "Jeroen Fiege",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5",
"symfony/symfony": "^2.6|^3.0",
"pda/pheanstalk": "^3.0"
},
"require-dev": {
"doctrine/orm": "^2.3",
"phpunit/phpunit": "^4.5",
"monolog/monolog": "^1.10.0"
},
"autoload": {
"psr-4": {
"TreeHouse\\WorkerBundle\\": "src/TreeHouse/WorkerBundle/"
}
},
"autoload-dev": {
"psr-4": {
"TreeHouse\\WorkerBundle\\Tests\\": "tests/TreeHouse/WorkerBundle/Tests/"
}
}
}