-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
45 lines (45 loc) · 1.35 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
36
37
38
39
40
41
42
43
44
45
{
"name": "heristop/jobqueue-bundle",
"description": "This bundle provides the use of Zend_Queue from Zend Framework. It allows your Symfony application to schedule multiple console commands as server-side jobs.",
"keywords": [ "symfony", "queue", "job", "rabbitmq", "doctrine" ],
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Alexandre Mogère"
}
],
"repositories": [
{
"type": "composer",
"url": "https://packages.zendframework.com/"
}
],
"require": {
"php": ">=5.4.0",
"symfony/framework-bundle": "~2.7|~3.0",
"symfony/finder": "~2.7|~3.0",
"symfony/console": "~2.7|~3.0",
"zendframework/zend-queue": "2.0.*@dev"
},
"require-dev": {
"symfony/monolog-bundle": "~2.7|~3.0",
"symfony/process": "~2.7|~3.0",
"doctrine/orm": "~2.5",
"doctrine/doctrine-bundle": "~1.2"
},
"suggest": {
"php-amqplib/php-amqplib": "AMQP library",
"react/event-loop": "Event Loop Component",
"zendframework/zend-json": "2.0.*"
},
"target-dir": "Heri/Bundle/JobQueueBundle",
"autoload": {
"psr-0": { "Heri\\Bundle\\JobQueueBundle": "" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}